@extends('seller.layouts.app') @section('title') Order List | Seller @endsection @section('content')
| Sl. | Time | Order No. | Customer Name | Mobile | Customer Address | Status | Action | |||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $key + 1 }} | {{ $order->created_at->format('d-m-Y (h:i a)') }} | {{ $order->unique_id }} | @if ($order->shipping){{ $order->shipping->name }} | {{ $order->shipping->phone }} | {{ $order->shipping->address }} | @elsenot available | not available | not available | @endif{{ $order->status }} |
|