Ver Fonte

Add SeasonalController

Daniel Supernault há 5 anos atrás
pai
commit
1856dd962d
1 ficheiros alterados com 20 adições e 0 exclusões
  1. 20 0
      app/Http/Controllers/SeasonalController.php

+ 20 - 0
app/Http/Controllers/SeasonalController.php

@@ -0,0 +1,20 @@
+<?php
+
+namespace App\Http\Controllers;
+
+use Illuminate\Http\Request;
+use Auth;
+
+class SeasonalController extends Controller
+{
+    public function __construct()
+    {
+    	$this->middleware('auth');
+    }
+
+    public function yearInReview()
+    {
+    	$profile = Auth::user()->profile;
+    	return view('account.yir', compact('profile'));
+    }
+}