{{-- resources/views/conference/packages.blade.php --}} @extends('layouts.app') @section('title', 'Conference Packages') @section('page_title', 'Conference Packages') @section('page_subtitle', 'Day delegate and event packages') @section('content')
← Conference
Packages
@if($packages->isEmpty())

No packages yet

@else @foreach($packages as $pkg)
{{ $pkg->name }} ${{ number_format($pkg->price_per_pax, 2) }} / pax @if(!$pkg->is_active) Inactive @endif
@if($pkg->description)
{{ $pkg->description }}
@endif
@if($pkg->min_pax || $pkg->max_pax) {{ $pkg->min_pax ?? 1 }} @if($pkg->max_pax) – {{ $pkg->max_pax }} @endif pax @endif @if($pkg->duration_hours) {{ $pkg->duration_hours }}h @endif {{ $pkg->bookings_count }} {{ Str::plural('booking', $pkg->bookings_count) }}
@if(!empty($pkg->includes))
@foreach($pkg->includes ?? [] as $item) ✓ {{ $item }} @endforeach
@endif
@csrf @method('DELETE')
@endforeach @endif
{{-- Add Package --}}
Add Package
@csrf
@error('name')
{{ $message }}
@enderror
@error('price_per_pax')
{{ $message }}
@enderror
@foreach(['Venue Hire','Morning Tea','Lunch','Afternoon Tea','Mineral Water','Projector','Stationery','WiFi','PA System','Whiteboard'] as $item) @endforeach
@endsection @push('scripts') @endpush