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

My Artists

@foreach($artists as $artist) @endforeach
# Artist Name Price per Hour Type Genres City, Country Options
{{ $loop->index+1 }} {{ $artist->user->name }} {{ $artist->price_per_hour }} {{ $artist->artist_type->name }} @foreach($artist->genres as $genre) {{ $genre->name }} @if (!$loop->last) ,@endif @endforeach {{ $artist->city }}, {{ $artist->country }}
@endsection