app\models\Artist::getImageAttribute PHP Method

getImageAttribute() public method

Turn the image name into its absolute URL.
public getImageAttribute ( mixed $value ) : string | null
$value mixed
return string | null
    public function getImageAttribute($value)
    {
        return $value ? app()->staticUrl("public/img/artists/{$value}") : null;
    }