@extends('master') @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('Order Detail'), 'headerData' => __('Orders') , 'url' => 'orders' , ])

{{ __('Order Detail') }}

@if (session('status')) @endif

{{ __('Order : ') }} {{ $order->order_id }}

{{ $order->event->name }}

{{ __('By') }}: {{ $order->organization->name }}

{{ __('event on : ') }}

{{ $order->event->start_time->format('l') . ', ' . $order->event->start_time->format('Y-m-d h:i a') . ' to ' . $order->event->start_time->format('Y-m-d h:i a') }}

{{ __('Ticket Number: ') }}

{{ $order->ticket->ticket_number }}

{{ __('Total tickets') }} :
{{ __('Order Status') }} :
{{ __('Payment Status') }} :
{{ __('Payment Gateway') }} :
{{ __('Payment Token') }} :
{{ __('Sub Total') }} :
{{ __('Coupon Discount') }} :
{{ __('Tax') }} :
{{ __('Final Payment') }} :
{{ $order->quantity . ' ticket' }}
{{ $order->order_status }}
{{ $order->payment_status == 1 ? 'Complete' : 'Waiting' }}
{{ $order->payment_type }}
{{ $order->payment_type == 'LOCAL' || $order->payment_type == 'FREE' ? '-' : $order->payment_token }}
@if ($order->payment_type == 'FREE')
{{ __('FREE') }}
{{ __('FREE') }}
{{ __('FREE') }}
@else
{{ $currency . ($order->payment + $order->coupon_discount - $order->tax) }}
(-) {{ $currency . $order->coupon_discount }}
(+) {{ $currency . $order->tax }}
{{ $currency . $order->payment }}
@endif
@endsection