示例#1
0
 public function skipped()
 {
     $user_id = User::getCurrentUserId();
     //Check if the media was already skipped by the user
     $skip = Skip::where('media_id', $this->id)->where('user_id', $user_id)->first();
     return (bool) $skip;
 }