3 namespace BookStack\Actions;
6 use Illuminate\Database\Eloquent\Relations\MorphTo;
8 class Favourite extends Model
10 protected $fillable = ['user_id'];
13 * Get the related model that can be favourited.
15 public function favouritable(): MorphTo
17 return $this->morphTo();