Update SiteController

This commit is contained in:
Daniel Supernault 2019-12-04 20:55:42 -07:00
parent 8e9b544f50
commit b793f9c4bb
No known key found for this signature in database
GPG key ID: 0DEF1C662C9033F7

View file

@ -116,7 +116,7 @@ class SiteController extends Controller
]); ]);
$profile = Profile::whereUsername($request->input('user'))->firstOrFail(); $profile = Profile::whereUsername($request->input('user'))->firstOrFail();
$user = $request->user(); $user = $request->user();
abort_if($profile->id == $user->profile_id, 404); abort_if($user && $profile->id == $user->profile_id, 404);
$following = $user != null ? FollowerService::follows($user->profile_id, $profile->id) : false; $following = $user != null ? FollowerService::follows($user->profile_id, $profile->id) : false;
return view('site.intents.follow', compact('profile', 'user', 'following')); return view('site.intents.follow', compact('profile', 'user', 'following'));
} }