{{ $studio->studio_label ?: 'Studio' }}
{{ ucfirst(str_replace('-', ' ', $studio->vertical_slug)) }}
| Capacity | {{ $studio->max_capacity }} people |
| Floor Area | {{ $studio->floor_area_sqm ? $studio->floor_area_sqm.' sqm' : '—' }} |
| Private Mode | {{ $studio->mode_private ? 'Yes' : 'No' }} |
| Shared Mode | {{ $studio->mode_shared ? 'Yes' : 'No' }} |
| Min Duration | {{ $studio->min_booking_duration }} |
| Buffer | {{ $studio->buffer_minutes }} min |
| Advance Limit | {{ str_replace('_', ' ', $studio->advance_booking_limit) }} |
{{-- Pricing compliance panel --}}
Pricing
| Rate | Current | 80% Target |
@if($studio->rate_hourly)
| Hourly |
{{ number_format($studio->rate_hourly / 100, 2) }} {{ $studio->rate_currency }} |
{{ number_format($studio->rate_hourly * 0.8 / 100, 2) }} {{ $studio->rate_currency }} |
@endif
@if($studio->rate_half_day)
| Half-day |
{{ number_format($studio->rate_half_day / 100, 2) }} {{ $studio->rate_currency }} |
{{ number_format($studio->rate_half_day * 0.8 / 100, 2) }} {{ $studio->rate_currency }} |
@endif
@if($studio->rate_full_day)
| Full-day |
{{ number_format($studio->rate_full_day / 100, 2) }} {{ $studio->rate_currency }} |
{{ number_format($studio->rate_full_day * 0.8 / 100, 2) }} {{ $studio->rate_currency }} |
@endif
@if($studio->rate_per_person)
| Per-person |
{{ number_format($studio->rate_per_person / 100, 2) }} {{ $studio->rate_currency }} |
{{ number_format($studio->rate_per_person * 0.8 / 100, 2) }} {{ $studio->rate_currency }} |
@endif
@if($studio->bundled_pricing)
Bundled Pricing:
{{ $studio->bundled_pricing_notes ?: 'Partner flagged bundled rate — separation required.' }}
@endif
{{-- Studio Manager --}}
@if($studio->studio_manager_email)
Studio Manager
| Email | {{ $studio->studio_manager_email }} |
| WhatsApp | {{ $studio->studio_manager_whatsapp ?: '—' }} |
| Same as LM | {{ $studio->studio_manager_is_lm ? 'Yes' : 'No' }} |
| Also Bookable | {{ $studio->studio_manager_is_resource ? 'Yes' : 'No' }} |
@endif
{{-- Equipment --}}
@if(count($studio->equipment_present ?? []) > 0 || $studio->equipment_missing || $studio->equipment_additional)
Equipment
@if(count($studio->equipment_present ?? []) > 0)
@foreach($studio->equipment_present as $eq)
{{ $eq }}
@endforeach
@endif
@if($studio->equipment_missing)
Missing: {{ $studio->equipment_missing }}
@endif
@if($studio->equipment_additional)
Additional: {{ $studio->equipment_additional }}
@endif
@if($studio->equipment_mandatory_operator_notes)
Mandatory operator: {{ $studio->equipment_mandatory_operator_notes }}
@endif
@endif
{{-- Roles --}}
@if($studio->roles->count() > 0)
Bookable Roles
| Role | Hourly Rate | Mandatory | Headcount |
@foreach($studio->roles as $role)
| {{ $role->role_type }} |
{{ $role->current_hourly_rate ? number_format($role->current_hourly_rate / 100, 2).' '.$studio->rate_currency : '—' }} |
{{ $role->is_mandatory ? 'Yes' : 'No' }} |
{{ $role->headcount }} |
@endforeach
@endif