Rooms New Room
{{-- Container for room cards --}}
@foreach($rooms as $room) {{-- Room 0 should be at the end for unassigned auditions--}} @if($room->id == '0') @push('noRoom') @endif {{ $room->name }} {{ $room->description }} @if($room->entries->count() === 0 and $room->id != '0')
@else {{ $room->entries->count() }} @endif
@foreach($room->auditions as $audition) {{ $audition->entries->count() }} {{ $audition->name }} @endforeach
@if($room->id == '0') @endpush @endif @endforeach()
{{-- Unassigned Auditions --}} @stack('noRoom')