Update Status model

pull/353/head
Daniel Supernault 7 years ago
parent 5d3b66f778
commit 4b0939cbfb
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -92,6 +92,9 @@ class Status extends Model
public function bookmarked()
{
if(!Auth::check()) {
return 0;
}
$profile = Auth::user()->profile;
return Bookmark::whereProfileId($profile->id)->whereStatusId($this->id)->count();
}

Loading…
Cancel
Save