Level 56
Try this:
{!! $useriformation->render() !!}
You set the pagination to be stored in this variable.
I am Facing A Pagination Problem At My View Page
Here is My Function public function view($id) {
$useriformation = DB::table('users')->paginate(3);
return view('views')->with('useriformation', $useriformation);
}
But when i try to Generate Pagination At My View {!! $value->render() !!} I Got This Error
Call to undefined method stdClass::render()
Try this:
{!! $useriformation->render() !!}
You set the pagination to be stored in this variable.
Please or to participate in this conversation.