@extends('backend.admin-master') @section('site-title') {{__('Dashboard')}} @endsection @section('content')

Order Details


Order Type : {{ucwords($order_data->order_type)}}
Order Status : {{ucwords($order_data->order_status)}}
@if($order_data->order_type =='buy' || $order_data->order_type =='sell') Metal Type : {{ucwords($order_data->metal_type)}}
@if($order_data->order_status =='success') Quantity : {{ucwords($order_data->response_quantity)}} Gm
@else Quantity : {{ucwords($order_data->quantity)}} Gm
Total Amount : ₹ {{ucwords($order_data->total_price_tax_inc)}}
@endif @endif @if($order_data->order_type =='buy' && !empty($response_data)) Total Amount : ₹ {{$response_data['totalAmount']}}
Pre Tax Amount : ₹ {{$response_data['preTaxAmount']}}
Rate : ₹ {{$response_data['rate']}}
Transaction Id : ₹ {{$response_data['transactionId']}}
Merchant Transaction Id : {{$response_data['merchantTransactionId']}}
Invoice Number : {{$response_data['invoiceNumber']}}
Download Invoice
@endif @if($order_data->order_type =='sell' && !empty($response_data)) Total Amount : ₹ {{$response_data['totalAmount']}}
Pre Tax Amount : ₹ {{$response_data['preTaxAmount']}}
Rate : ₹ {{$response_data['rate']}}
Transaction Id : ₹ {{$response_data['transactionId']}}
Merchant Transaction Id : {{$response_data['merchantTransactionId']}}
Bank Account Name : {{$response_data['bankInfo']['accountName']}}
Account Number : {{$response_data['bankInfo']['accountNumber']}}
IfscCode : {{$response_data['bankInfo']['ifscCode']}}
@endif @if($order_data->order_type =='transfer' && !empty($response_data)) Metal Type : ₹ {{$response_data['metalType']}}
Quantity : ₹ {{$response_data['quantity']}}
Transaction Id : ₹ {{$response_data['transactionId']}}
Merchant Transaction Id : {{$response_data['merchantTransactionId']}}
@endif @if($order_data->order_type =='redeem' && !empty($redeem_data))
{{$redeem_data['productDetails'][0]['productName']}}
Quantity : {{$redeem_data['productDetails'][0]['quantity']}}
Shipping Charges : ₹ {{$redeem_data['shippingCharges']}}
Date : {{date('Y-m-d H:i:s', strtotime($redeem_data['createdAt']))}}
Address : {{$redeem_data['shippingAddress']['name']}}, {{$redeem_data['shippingAddress']['address']}} {{$redeem_data['shippingAddress']['city']}}, {{$redeem_data['shippingAddress']['pincode']}}
Transaction ID : {{$redeem_data['transactionId']}}
Logistic Name : {{$redeem_data['logisticName']}}
Track Order ID : {{$redeem_data['awbNo']}}
@endif
@endsection