소스 검색

Add SeasonalController

Daniel Supernault 5 년 전
부모
커밋
1856dd962d
1개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  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'));
+    }
+}