@extends('layouts.usermaster') @section('style') @endsection @section('content')

Booking Form

{{-- --}}
Booking Id : {{ $bookings->enrollmentno }}

@csrf
@error('client_name')
{{ $message }}
@enderror
@error('destination')
{{ $message }}
@enderror
@error('service_type')
{{ $message }}
@enderror
@error('payment_status')
{{ $message }}
@enderror
{{-- money selected table --}}
@php $numItems = count($booking_item); $i = 0; @endphp @foreach ($booking_item as $book_item) @if(++$i === $numItems)@endif @endforeach {{-- --}}
Sr.No. Money Received Mode of Payment Received Date Screenshot Payment Screenshot Action
Grand Total: 0.00

--- Flight ---

{{--
--- Flight ---
--}}
+Add New
@php $numItemsa = count($flight_items); $j = 0; @endphp @foreach ($flight_items as $flight_item) @if(++$j === $numItemsa)@endif @endforeach {{-- --}}
Sr No Description Flight No Departure Date To Departure Time Arrival Time Flight Cost Action
Grand Total: 0.00
{{-- Hotels --}}

--- Hotels ---

@php $numItemsb = count($hotel_items); $k = 0; @endphp @foreach ($hotel_items as $hotel_item) @if(++$k === $numItemsb)@endif @endforeach {{-- --}}
Sr No Destination Hotel Name Description Vendor Cost Status Action
Grand Total: 0.00
{{-- Tours and Transfers --}}

--- Tours and Transfers ---

@php $numItemsc = count($tat_items); $l = 0; @endphp @foreach ($tat_items as $tat_item) @if(++$l === $numItemsc)@endif @endforeach {{-- --}}
Sr No Destination Tour Name Description Vendor Cost Status Action
Grand Total: 0.00
@section('script') {{-- table data calculation --}} {{-- end table data calculation --}} @endsection @endsection