Call to undefined method Illuminate\Database\Query\Builder::links()

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-30 10:04:59

问题


whats up ? I have a little problem with Laravel Paginator.

I built the function using order by and paginator, but I'm getting the error message "Call to undefined method Illuminate \ Database \ Query \ Builder :: links () (View: C: \ wamp \ www \ laravel \ app \ views \ frontend \ premios.blade.php). "

============= My Function ==============

public function premios()
{
$this->layout->content = View::make('frontend.premios')->with('premiostexto',PremiosTexto::all()) ->with('premios', Premios::orderBy('ordem', 'ASC')->paginate(5));
}

==========My View============

@foreach($premios as $premios)
    <span class="tituloPremio">{{$premios->titulo}}</span>
    <span class="dataPremio">{{$premios->data}}</span>
@endforeach

    {{ $premios->links() }}

I tried putting "$premios->links()" inside and outside the foreach.Without pagination everything works good


回答1:


You are overriding the $premios variable in the foreach. Use it as singular form in the foreach:

@foreach($premios as $premio)
    <span class="tituloPremio">{{$premio->titulo}}</span>
    <span class="dataPremio">{{$premio->data}}</span>
@endforeach

{{ $premios->links() }}


来源:https://stackoverflow.com/questions/25247600/call-to-undefined-method-illuminate-database-query-builderlinks

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!