SeasonalController.php 346 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. use Auth;
  5. class SeasonalController extends Controller
  6. {
  7. public function __construct()
  8. {
  9. $this->middleware('auth');
  10. }
  11. public function yearInReview()
  12. {
  13. $profile = Auth::user()->profile;
  14. return view('account.yir', compact('profile'));
  15. }
  16. }