| {{ $date }} | {{ format_amount(round($total, 2)) }} |
| Day | Time | Class Name | Location | NS | AT (%) | Capacity (%) | Instructor | Sign off | Cost |
|---|---|---|---|---|---|---|---|---|---|
| Total | {{ format_amount(round($row['cost'] ?? 0, 2)) }} | ||||||||
| {{ "{$row->day->value} - {$row->date_at_formated}" }} | {{ $row->time }} | {{ $row->class ? $row->class->name : '' }} | {{ $row->location ? $row->location->label : '' }} | {{ $row->has_sign_off ? $row->no_show : 0 }} | {{ round((($row->total_bookings - $row->no_show) * 100) / $row->capacity, 2) }} | {{ $calCapacity }} | {{ $row->instructor ? $row->instructor->name : '' }} | {{ $row->has_sign_off ? 'Yes' : 'No' }} | {{ format_amount(round($row->cost ?? 0, 2)) }} |