Ejemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $clients = Client::paginate(20);
     return view('callback.client.index')->with(compact('clients'));
 }