@extends('layouts.app') @push('css') @endpush @section('content')

Booking Submission

@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@method('POST') @csrf

Select Payment Method

Offline Payment

Your Booking

{{ $CarTypes->name }}

{{ Request()->airports }}

@if(!empty($CarTypes->image_url)) {!! get_image_tag($CarTypes->image_id,'medium',['class'=>'img-responsive','alt'=>$CarTypes->title]) !!} @else {!! get_image_tag($CarTypes->image_id,'medium',['class'=>'img-responsive','alt'=>$CarTypes->title]) !!} @endif
{{-- ----start box---- --}}
Destination:{{ ucfirst(Request()->destination) }}
{{ Request()->airports }}

{{ Request()->passengers }}


{{ date('m-d-Y', strtotime(Request()->date)) }}

{{-- ----end box---- --}}
  • price
    {{format_money_main($CarTypes->price)}}
  • Total:
    {{format_money_main($CarTypes->price)}}
@endsection @push('js') @endpush