@if($room->id != '0')
@include('admin.rooms.index-edit-room-modal')
@endif
{{ $room->name }}
{{ $room->description }}
@if($room->auditions->count() === 0 and $room->id != '0')
@else
{{ $room->entries->count() }}
@endif
@foreach($room->auditions as $audition)
{{ $audition->entries->count() }}
{{ $audition->name }}
@endforeach