@extends('admin.layouts.app') @section('title', 'Order Details') @section('content')
| Product | Price |
|---|---|
| {{ $item->product_title }} | {{ \App\Models\Setting::get('currency_symbol','৳') }}{{ number_format($item->price, 2) }} |
| Total | {{ \App\Models\Setting::get('currency_symbol','৳') }}{{ number_format($order->total, 2) }} |
{{ $order->user->name ?? 'N/A' }}
{{ $order->user->email ?? '' }}
{{ $order->user->phone ?? '' }}
Method: {{ $order->payment_method }}
TxnID: {{ $order->transaction_id }}
Date: {{ $order->created_at->format('M d, Y h:i A') }}