app\models\Artist::getImageAttribute PHP Méthode

getImageAttribute() public méthode

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