@extends('admin.layouts.app', [ 'title' => 'Edit ' . $tnm, 'header' => true, 'aside' => true, ]) @push('style') @endpush @section('content')
@include('admin.components.title-bar', [ 'name' => 'Edit ' . $tnm, 'routeName' => $rnm, 'submit' => true, ]) @stack('title-bar-form')
Customer information
{{ $order->name }}
Name: {{ @$order->user->name }}
Email: {{ @$order->user->email }}
Phone: {{ @$order->user->phone }}
@if ($order->creator)
Booking poster information
{{ $order->name }}
Name: {{ @$order->creator->name }}
Email: {{ @$order->creator->email }}
Phone: {{ @$order->creator->phone }}
@endif @if ($order->partner)
Partner information
{{ $order->name }}
Name: {{ @$order->partner->name }}
Email: {{ @$order->partner->email }}
Phone: {{ @$order->partner->phone }}
@endif @if ($order->driver)
Driver information
{{ $order->name }}
Name: {{ @$order->driver->name }}
Email: {{ @$order->driver->email }}
Phone: {{ @$order->driver->phone }}
@endif @if ($order->driver)
Driver car information
{{ $order->name }}
{{ $order->name }}
Name: {{ @$order->partnerProduct->name }}
Vehicle No: {{ @$order->partnerProduct->vehicle_no }}
Total Seats: {{ @$order->partnerProduct->total_seats }}
@if (@$order->partnerProduct->model)
Model: {{ @$order->partnerProduct->model->name }}
@endif
@endif @if ($partners->count())
Select Partner
@endif
Select Driver
Select Car
Trip details
  • Out Station
  • Local / Rental
type, ['One Way Trip', 'Round Trip']) ? 'style="display:none"' : '' !!}>
type, ['Local / Rental Trip', 'Airport Transfer']) ? 'style="display:none"' : '' !!}>
@stack('tags')
trip != '3' ? 'style="display:none"' : '' !!} />
@if ($localPackages->count()) @endif @if ($cities->count()) @endif



Cab Details
{{ $order->name }}
Payment SUMMARY {{ $order->payment_mode }}
  • Subtotal
  • Paid Amount ({{ $order->payment_mode }})
  • Discount
  • Coupon Discount {{ $order->coupon_code ? '(' . $order->coupon_code . ')' : '' }}
  • gst_amount ? 'checked' : '' }}>
    {{ $order->gst_amount ? '-' . getAmount($order->gst_amount) : 'NA' }}

  • Total Amount{{ getAmount($order->total) }}
  • @if ($order->due_amount)

  • Payable Amount{{ getAmount($order->due_amount) }}
  • @endif
@if ($order->transactions->count())
Transactions
    @foreach ($order->transactions as $item)
  • {{ $item->status }}
    {!! $item->description !!}
    {{ $item->created_at->format('h:i A @ j M, Y') }}
  • @endforeach
@endif @if ($order->histories->count())
Histories
    @foreach ($order->histories as $key => $item)
  • {!! $item->message !!}
    {{ $item->created_at->format('h:i A @ j M, Y') }}
  • @endforeach
@endif
Status
Booking Commission
Rewards
Show in app
Payment mode
@if (Route::has($rnm . '.media'))
Image
@if ($order->getImage('image', 'x200'))
@endif
@endif
@endsection @push('script') @stack('media-script') @stack('text-area') @stack('select2') @endpush