@extends('admin.layout.layout') @section('page-level-css') @endsection @section('content')
@include('admin.partials.header')

Order Id : {{$order->order_id}}

Status : @if($order->status == 1) Confirmed @elseif($order->status == 2) Pending @endif

Ticket Details

Ticket Status: @if($ticket->status == 1) Closed @elseif($ticket->status == 2) Open @endif

Ticket No : {{$ticket->ticket}}

Ticket Description : {{$ticket->description}}

Payment Details

@php $coupon_detail = App\DiscountCoupon::where('id',$order->coupon_id)->first(); @endphp

Coupon Detail : {{$coupon_detail->coupon}} | {{$coupon_detail->percentage}} % | {{$coupon_detail->thresh_hold_value}}

Discount : {{$order->discount_amount}}/-

Amount Without Discount : {{$order->without_discount_amount}}/-

Order Total : {{$order->total}}

Bank Details

mihpayid : {{$order->mihpayid}}

Mode : {{$order->mode}}

Bank Status : {{$order->bank_status}}

Bank Ref Number : {{$order->bank_ref_num}}

@if($order->error)

Error: {{$order->error}}

@endif @if($order->error_message)

Error Message: {{$order->error_message}}

@endif
{{-- flash message starts here --}}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{{Session::get('success')}}
@endif
{{-- flash message ends here --}}
{{-- filters starts --}}
{{-- Filters --}}
{{-- filters --}} {{-- @include('admin.partials.filters.locationFilter') --}} {{-- filters ends --}}
products In Order
@if( count($productsInOrders) != 0 ) @php $sr = 1; @endphp @foreach( $productsInOrders as $productsInOrder ) @php $sr++; @endphp @endforeach @else @endif
@php $billing_address_details = json_decode($order->billing_address); @endphp

Billing Address : @foreach( $billing_address_details as $key => $detail )

{{$key}} : {{$detail}}
@endforeach
@php $shipping_address_details = json_decode($order->shipping_address); @endphp

Shipping Address : @foreach( $shipping_address_details as $key => $detail )

{{$key}} : {{$detail}}
@endforeach
{{-- Delete Modal Starts here --}} @include('admin.partials.trashModal') {{-- Delete Modal ends here --}} @include('admin.partials.closeModal') @include('admin.partials.footer')
@endsection @section('page-level-js') @endsection