2021-06-26 17:23:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace BookStack\Actions;
|
2021-05-16 01:29:56 +02:00
|
|
|
|
|
|
|
use BookStack\Model;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\MorphTo;
|
|
|
|
|
|
|
|
class Favourite extends Model
|
|
|
|
{
|
|
|
|
protected $fillable = ['user_id'];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the related model that can be favourited.
|
|
|
|
*/
|
|
|
|
public function favouritable(): MorphTo
|
|
|
|
{
|
|
|
|
return $this->morphTo();
|
|
|
|
}
|
|
|
|
}
|