@extends('layouts.app') @section('content')

Onboarding | Artist - {{ \Illuminate\Support\Facades\Auth::user()->name }}

@csrf
@if(is_null($artist->birth_date) || trim($artist->birth_date) === '') @else

{{ $artist->birth_date->isoFormat('DD-MM-Y') }}

@endif
@if(is_null($artist->country) || trim($artist->country) === '') @else
City

{{ $artist->country }}

@endif
@if(is_null($artist->city) || trim($artist->city) === '') @else
Country

{{ $artist->city }}

@endif
@if(is_null($artist->artist_type) || trim($artist->artist_type->name) === '') @else

{{ $artist->artist_type->name }}

@endif
@if($artist->genres->isEmpty()) @else @foreach($artist->genres as $genre)

{{ $genre->name }}

@endforeach @endif
@if(is_null($artist->short_description) || trim($artist->short_description) === '') @else

{{ $artist->short_description }}

@endif
@endsection