Update Status model

pull/1418/head
Daniel Supernault 6 years ago
parent bed5cc74de
commit f98c7caff6
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -150,8 +150,10 @@ class Status extends Model
if(Auth::check() == false) {
return false;
}
$profile = Auth::user()->profile;
return Like::whereProfileId($profile->id)->whereStatusId($this->id)->count();
return Cache::remember('status:'.$this->id.':likedby:userid:'.Auth::id(), now()->addHours(30), function() {
$profile = Auth::user()->profile;
return Like::whereProfileId($profile->id)->whereStatusId($this->id)->count();
});
}
public function likedBy()

Loading…
Cancel
Save