@section('title', __('New Taxi Order'))
{{-- customer --}} {{-- payment method --}} {{-- pickup address --}} {{-- dropoff address --}} {{-- vehicle types --}} {{-- schedule date & time --}}
{{-- generate summary --}} {{ __('Generate Summary') }}

{{ __('Order Summary') }}



@if (!empty($schedule_date))
@php $scheduleDateTime = \Carbon\Carbon::createFromFormat('Y-m-d H:i', "$schedule_date $schedule_time"); @endphp {{ $scheduleDateTime->format('F j, Y h:i A') . ' (' . $scheduleDateTime->diffForHumans() . ')' }}

@endif {{-- amounts --}}

{{ __('Subtotal') }}

{{ currencyFormat($amount ?? 0.0) }}

{{ __('Discount') }}

- {{ currencyFormat($discount ?? 0.0) }}


{{ __('Total') }}

{{ currencyFormat($total_amount ?? 0.0) }}


{{-- create order button --}}
{{ __('Create Order') }}