Laravel 5.2 - Method links does not exist
By : Kings Blezz
Date : March 29 2020, 07:55 AM
it helps some times i'm passing my array $posts to my view and i'm tryng use pagination but i have the error: , Change you code to this: code :
$posts = Post::where('visible', 1)
->where('expire_date', '>', $current)
->where('delete', 0)
->paginate(1);
return view('search', compact('posts'));
|
Method links do not exist - Laravel 5.5
By : Imran Khan
Date : March 29 2020, 07:55 AM
With these it helps I'm getting the following error: , You should use Eloquent instead of query builder. Use: code :
$products = \App\Product::paginate(12);
$products = DB::table('products')->paginate(12);
|
laravel pagination Method links does not exist
By : Sandeep Yetthapu
Date : March 29 2020, 07:55 AM
|
Laravel 5.5 Method Links does not exist (Pagination) when applied to user model
By : wygoda
Date : March 29 2020, 07:55 AM
|
Method links do not exist on Laravel pagination
By : afroz
Date : March 29 2020, 07:55 AM
|