My pagination works right at localhost but not at server.The page counts are displayed correctly, but the first page information is only displayed.
controller :
$customers = Customer::orderBy('id','desc')->paginate(10);
return view('admin.customers_list',compact('customers'));
view :
{{$customers->links()}};
route:
Route::resource('customer','Admin\CustomersController');
$customers ->links?dd()return ?