*/ use HasFactory; use InteractsWithMedia; protected $fillable = ['title', 'description', 'rating', 'type']; public function image(): ?Media { return $this->getFirstMedia('image'); } public function imageUrl(): ?string { return $this->image() ? $this->image()->getUrl() : null; } }