Example #1
0
 /**
  * Show the application dashboard to the user.
  *
  * @return Response
  */
 public function getProfile()
 {
     $getprifile = Profile::where('user_id', '=', Auth::user()->id)->first();
     return view('employee.profile');
 }