Skip to content
Advertisement

Undefined property: IlluminatePaginationLengthAwarePaginator::$name

I am trying to get data from my table and show it in my view and paginate this data. I received this problem and couldn2t find any solution. I did the exactly same thing in my previous project and it worked well.

here is my Controller

JavaScript

and this is my view

JavaScript

Advertisement

Answer

JavaScript

should be $row->name,$row->email, etc… not $users->name, and change {{$users->links()}} to {!! $users->render() !!}

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement