@if(count($artists) > 0) @foreach($artists as $artist)
{{ $artist->user->name }}

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

{{ $artist->short_description }}

@foreach($artist->genres as $genre)

{{ $genre->name }}

@endforeach
View Artist
@endforeach @else
No Artists :(
@endif