Update Bookmark model

pull/780/head
Daniel Supernault 6 years ago
parent 884f675d30
commit 83d5fc404d
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -6,5 +6,16 @@ use Illuminate\Database\Eloquent\Model;
class Bookmark extends Model
{
protected $fillable = ['profile_id', 'status_id'];
protected $fillable = ['profile_id', 'status_id'];
public function status()
{
return $this->belongsTo(Status::class);
}
public function profile()
{
return $this->belongsTo(Profile::class);
}
}

Loading…
Cancel
Save