pirepRepo = $pirepRepo; $this->userRepo = $userRepo; } /** * Show the application dashboard. */ public function index() { $users = $this->userRepo->recent(); $pireps = $this->pirepRepo->recent(); $last_pirep = null; $user = Auth::user(); try { $last_pirep = $this->pirepRepo->find($user->last_pirep_id); } catch(\Exception $e) { } return $this->view('dashboard.index', [ 'user' => $user, 'pireps' => $pireps, 'users' => $users, 'last_pirep' => $last_pirep, ]); } }