false, ]; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = ['album_id']; public function album(): BelongsTo { return $this->belongsTo(Album::class); } public function getThumbnail() : string { return route('image.show', $this); } }