/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $staff = Staff::paginate(PAGINATE_LIMIT);
     return view('staff.index', compact('staff'));
 }
 public function index()
 {
     $staff = Staff::paginate(15);
     return view('staff.index', compact('staff'));
 }