@foreach($ensembles as $ensemble)
{{ $ensemble->name }}
@for($n=1; $n<= $ensemble->set_count; $n++)
Set {{$n}}
@endfor
@foreach($instruments as $instrument)
{{ $instrument->instrument }}
@for($n=1; $n<= $ensemble->set_count; $n++)
@if($ensemble->getEtude($instrument, $n))
{{ $ensemble->abbreviation }} - {{ $instrument->instrument }} - Set {{ $n }}
@else
No Etude
@endif
@endfor
@endforeach
@endforeach