@extends('layouts.app') @section('title', 'Holiday Parking - Home') @section('content')

Invoice

Customer Details

  • Name {{$booking['customer']['full_name']}}
  • Contact Number {{$booking['customer']['mobile']}}
  • Email {{$booking['customer']['email']}}

Vehicle Details

@if(!empty($booking['vehicles'])) @foreach($booking['vehicles'] as $key => $vehicle)
Vehicle Number {{++$key}}
  • Make {{$vehicle['vehicle_make']}}
  • Model {{$vehicle['vehicle_model']}}
  • Colour {{$vehicle['vehicle_color']}}
  • Reg. Number {{$vehicle['vehicle_no']}}
@endforeach @endif

Payment

{{csrf_field()}}
{{--
    --}} {{--
  • --}} {{-- Payment Method--}} {{-- Visa--}} {{--
  • --}} {{--
  • --}} {{-- Payment Date--}} {{-- 23-12-2024--}} {{--
  • --}} {{--
  • --}} {{-- Payment Status--}} {{-- Success--}} {{--
  • --}} {{--
--}}
Invoice No: {{$booking['invoice']['invoice_no']}}
Booking Ref: QWE444
  • Invoice Date {{$booking['invoice']['invoice_date']}}
  • Payment Due on 23-12-2024(static)
Company Name
{{$booking['company']['name']}}
  • Service {{$booking['product']['subtitle']}}
  • Travelling From {{$booking['airport']['name']}}
  • Drop Off Date & Time {{$booking['date_from']}} | {{$booking['date_fromtime']}}
  • Pickup Date & Time {{$booking['date_to']}} | {{$booking['date_totime']}}
  • Package Amount {{$booking['company']['currency_symbol']}}{{$booking['price']}}
  • Add-on Packages
  • 48hr Late Return Cover £ 8.75
  • Priority Parking £ 12.75
  • Booking Charges £ 6.12
  • Discount - £ 10.22
  • Cancellation Charges £ 00.00
  • Total Amount £ 75.32
@endsection {{--@push('scripts')--}} {{-- --}} {{--@endpush--}}