@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()->from_location }}

{{ Request()->to_location }}

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

{{ Request()->passengers }}


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

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