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')); + } +}