Example #1
0
 /**
  * Show servor's staff
  * GET
  *
  * @return Response
  */
 public function showStaff()
 {
     $staffs = Cache::remember('staffs', 60, function () {
         return \App\Model\Staff::all();
     });
     return view('misc.staff', compact('staffs'));
 }