@extends('admin.layouts.app') @section('content')
# | Name | Shipping Address | Billing Addres | Order Items | Order Status | Total Price | Status | Action |
---|---|---|---|---|---|---|---|---|
# | Name | Shipping Address | Billing Addres | Order Items | Order Status | Total Price | Status | Action |
{{ $loop->iteration }} | {{ $order->Customers->customer_name ?? '' }} | {{ $order->Address->shipping_address ?? '' }} | {{ $order->Address->billing_address ?? '' }} | {{ $order->order_items }} | {{ $order->order_status }} | {{ $order->total_price }} | {{ $order->status == 1 ? 'Active' : 'Suspended' }} |