@extends('layouts.admin') @section('title', 'Dashboard | Mintavia Admin') @section('content')
Order ID {{$order->order_number}}
Place On {{$order->created_at->format('d-M-Y')}}
Delivery Status {{\App\Models\Order::status[$order->status]}}
| Image | Name | Quantiy | Price | Total |
|---|---|---|---|---|
|
|
{{{$product->name}}} | {{$product->quantity}} | {{$product->price}} | {{ $product->quantity * $product->price}} |
| Discount Amount | {{$order->discount_amount}} |
|---|---|
| Shipping Amount | {{$order->shipping_charges}} |
| Net Amount | {{$order->grand_total}} |
| Reference Id | {{$order->reference_Id}} |
|---|---|
| Payment Status | {{$order->payment_status ? 'Paid' : 'Not Paid'}} |
| Payment Method | {{$order->payment_method}} |