Ejemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function getData()
 {
     //return view('getData');
     $employeList = employees::paginate(9);
     //$booksList = Books::all();
     return view('books.index')->with('employeList', $employeList);
 }
Ejemplo n.º 2
0
 /**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $employeList = employees::paginate(9);
     //$booksList = Books::all();
     return view('books.index')->with('employeList', $employeList);
 }