@foreach($rooms as $room) @if($room->id == 0) @continue @endif
  • {{-- card wrapper --}}
    {{-- card header --}}

    {{ $room->name }}

    {{ $room->description }}

    {{-- Auditions Dropdown --}}
    @foreach($room->auditions as $audition)

    {{ $audition->name }}

    @endforeach
    {{-- End Card Header --}}
    {{-- Judge Listing --}} @foreach($room->judges as $judge)
    {{-- Judge Line --}}

    {{ $judge->full_name() }}, Vinita

    Admin

    @csrf @method('DELETE')
    @endforeach
    {{-- Add Judge Form --}}
    @csrf
  • @endforeach