*/ use HasFactory; use InteractsWithMedia; protected $fillable = [ 'werkgever', 'functie', 'startdatum', 'einddatum', 'beschrijving', ]; public function image(): ?Media { return $this->getFirstMedia('image'); } public function imageUrl(): ?string { return $this->image() ? $this->image()->getUrl() : null; } }