public function index()
 {
     $customers = Customer::paginate(10);
     return $customers;
 }
Ejemplo n.º 2
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     //
     $customers = Customer::paginate(15);
     return view('customers.index', compact('customers'));
 }