Cleanup blade templates

This commit is contained in:
Matt Young 2024-06-22 16:44:01 -05:00
parent 1744b73138
commit 5e15b85319
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<x-card.card class="mb-3">
<x-card.heading>Seating</x-card.heading>
<div class="py-3 px-5">
<div class="py-3 px-1">
<x-form.form method="POST" action="{{ route('tabulation.audition.seat',['audition' => $audition]) }}">
@csrf
@foreach($ensembleLimits as $ensembleLimit)

View File

@ -1,6 +1,6 @@
@foreach($ensembleLimits as $ensembleLimit)
<x-card.card class="mb-3">
<x-card.heading>{{ $ensembleLimit->ensemble->name }}</x-card.heading>
<x-card.heading>{{ $ensembleLimit->ensemble->name }} - DRAFT</x-card.heading>
<x-card.list.body>
@php
$maxAccepted = $requestedEnsembleAccepts[$ensembleLimit->ensemble->id] ?? $ensembleLimit->maximum_accepted;