@extends('admin.layout.app') @section('content')
@include('admin.layout.session')
Order Details
Order Date : {{$order->created_at}}
@if($order->user_id == null) @else @endif
Order Id {{$order->order_id}}
Orderer Name{{$order->shipping_address->fname}} {{$order->shipping_address->lname}}{{$order->user->first_name}}
Shipping Address {{$order->shipping_address->fname}} {{$order->shipping_address->lname}}, {{$order->shipping_address->address}} {{$order->shipping_address->address2}}, {{$order->shipping_address->city}}, {{$order->shipping_address->state}}, {{$order->shipping_address->zipcode}}
Phone No. {{$order->shipping_address->mobile_no}}
E-mail {{$order->shipping_address->email}}
Total {{\Helper::getCurrency()}} {{$order->grand_total}}
Discount {{\Helper::getCurrency()}} {{$order->discount}}
Payable Amount {{\Helper::getCurrency()}} {{$order->grand_total}}
Transaction Details
Account Id {{$transaction->account_id}}
Amount {{\Helper::getCurrency()}} {{$transaction->amount}}
txhash {{$transaction->txhash}}
Payment Currency {{$transaction->payment_currency}}
Product Details
@php $i=1 @endphp @foreach($order_details as $order_d) @endforeach
Sr. No. Product Quantity Price Total
{{$i++}} {{$order_d->product->name}} ({{$order_d->cart_data->options->color}}) ({{$order_d->cart_data->options->size}}) {{$order_d->quantity}} {{\Helper::getCurrency()}} {{$order_d->price}} {{\Helper::getCurrency()}} {{$order_d->grand_total}}
@endsection @push('js') @endpush