{{-- resources/views/conference/addons.blade.php --}} @extends('layouts.app') @section('title', 'Conference Add-ons') @section('page_title', 'Conference Add-ons') @section('page_subtitle', 'AV equipment, catering, extras') @section('content')
← Conference
{{-- Add-ons list --}}
@if($addons->isEmpty())

No add-ons yet

Add items like projectors, catering packages, PA systems

@else @foreach($addons as $category => $items)
{{ $category }}
@foreach($items as $addon)
{{ $addon->name }} {{ $addon->currency }} {{ number_format($addon->price, 2) }} @if($addon->unit) / {{ $addon->unit }} @endif @if($addon->is_per_pax) per pax @endif @if(!$addon->is_active) Inactive @endif
@if($addon->description)
{{ $addon->description }}
@endif
@csrf @method('DELETE')
@endforeach
@endforeach @endif
{{-- Add Form --}}
Add Item
@csrf
@error('name')
{{ $message }}
@enderror
{{-- Edit Modal --}} @endsection @push('scripts') @endpush