1
0
Fork 0

Add SeasonalController

This commit is contained in:
Daniel Supernault 2019-11-22 23:35:51 -07:00
parent 98ad593654
commit 1856dd962d
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 20 additions and 0 deletions

View File

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