@extends('user.user_dashboard') @section('home')
| Sl | Product_Name | Payment_ID | Product_Qty | Product_Price | Order_Id | Order_Status | Order Date | |
|---|---|---|---|---|---|---|---|---|
| {{ $key+1 }} | {{ $order->product_name }} | {{ $order->payment_id }} | {{ $order->product_qty }} | @if ($order->payment->currency == 'ESPEES'){{ $order->product_price_esp }} Espees | @elseif ($order->payment->currency == 'usd'){{ $order->product_price_usd }} USD | @endif{{ $order->id }} | {{ $order->order_status }} | {{ $order->created_at->format('F j, Y, g:i A') }} |
| Sl | Name | Payment_ID | Payment_Amount | Narration | Payment_Mode | Payment_Reference | Payment_Date | Country | Delivery_Address | Postal_Code | Order_Notes | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $key+1 }} | {{ $payment->name }} | {{ $payment->email }} | {{ $payment->id }} | {{ $payment->total_amount }} {{ $payment->currency }} | {{ $payment->narration }} | {{ $payment->payment_gateway }} | {{ $payment->tx_ref }} | {{ $payment->created_at->format('F j, Y, g:i A') }} | {{ $payment->country }} | {{ $payment->street_address }} {{ $payment->suburb }} {{ $payment->city }}, {{ $payment->state }} | {{ $payment->postal_code }} | {{ $payment->order_notes }} |