From 1856dd962d8c371d701af7f266e2f81e157cf474 Mon Sep 17 00:00:00 2001 From: Daniel Supernault Date: Fri, 22 Nov 2019 23:35:51 -0700 Subject: [PATCH] Add SeasonalController --- app/Http/Controllers/SeasonalController.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 app/Http/Controllers/SeasonalController.php diff --git a/app/Http/Controllers/SeasonalController.php b/app/Http/Controllers/SeasonalController.php new file mode 100644 index 000000000..2dbb50788 --- /dev/null +++ b/app/Http/Controllers/SeasonalController.php @@ -0,0 +1,20 @@ +middleware('auth'); + } + + public function yearInReview() + { + $profile = Auth::user()->profile; + return view('account.yir', compact('profile')); + } +}