@section('title', 'Add-Ons') @section('top-menu-items') @endsection @section('sub-menu-items') @endsection

Tour Add-Ons can be products, fees, or donations that are applied to specified Tours. Tour Add-Ons can be made available only to your team to add to Customer bookings made on the Schedule, or they can be made available to your Customers to select through the Online Booking Form. Pro Tip: Augment your Customer journey through the Online Booking Form by providing Tour specific Add-Ons for purchase.

@can('write_add-ons') Add Add-On @endcan
Selected
@can('write_add-ons') @endcan @php $sortedAddOns = $addOns->sortByDesc(function ($addOn) { return Str::startsWith($addOn->name, 'Private Flight Fee') ? 1 : 0; }); @endphp @foreach ($sortedAddOns as $addOn) @php $tourNames = $addOn->tours; @endphp @can('write_add-ons') @endcan @endforeach
ADD-ON NAME APPLICABLE TOURS Price AVAILABLE Online BookingActions
{{ $addOn->name }} @foreach($tourNames as $tour) {{ $tour->name }} @endforeach @if(count($tourNames) === 0) N/A @endif {{ $addOn->price }} {{ $addOn->availability ? 'Yes' : 'No' }} {{ $addOn->online_booking ? 'Yes' : 'No' }} Actions
{{ $addOns->onEachSide(1)->links('livewire::bootstrap') }}
@push('styles') @endpush @push('scripts') @endpush