@extends('admin::layouts.master') @section('title', 'Order Detail') @section('content')
| Order Number | : {{ $order->order_number }} |
| Order Date | : {{ $order->created_at->format('D d M, Y') }} at {{ $order->created_at->format('g:i a') }} |
| Quantity | : {{ $order->quantity }} |
| Order Status | : {{ $order->status }} |
| Shipping Charge | @foreach($order->shipping ?? [] as $data) ${{ number_format($data, 2) }} @endforeach |
| Total Amount | : ${{ number_format($order->total_amount, 2) }} |
| Payment Method | : {{ $order->payment_method == 'cod' ? 'Cash on Delivery' : 'Paypal' }} |
| Payment Status | : {{ $order->payment_status }} |
| Full Name | : {{ $order->user->name }} |
| @lang('partials.email') | : {{ $order->user->email }} |
| @lang('partials.Phone') | --}} {{--: {{ $order->user->ph }} | --}} {{--
| @lang('messages.address') | --}} {{--: {{ $order->address1 }}, {{ $order->address2 }} | --}} {{--
| @lang('messages.country') | --}} {{--: {{ $order->country }} | --}} {{--
| @lang('partials.code') | --}} {{--: {{ $order->post_code }} | --}} {{--