@extends('layout2.clim.admin-header') @section('content')
| Product | Price | Quantity | Total |
|---|---|---|---|
|
{{ $item->product_name }}
#{{ $item->product_id }}
|
Tk {{ number_format($item->price, 2) }} | {{ $item->quantity }} | Tk {{ number_format($item->price * $item->quantity, 2) }} |
Name: {{ $order->customer_name }}
Phone: {{ $order->customer_phone }}
{{--Email: {{ $order->customer_email ?? 'N/A' }}
--}}Address: {{ $order->customer_address }}
Notes: {{ $order->notes }}
Date: {{ $order->created_at->format('d M Y, h:i A') }}
Payment: {{ $order->payment_method }}
Status: {{ ucfirst($order->status) }}
{{ $order->notes }}