@extends('seller.layouts.app') @section('title') Order List | Seller @endsection @section('content')
@foreach ($orders as $key => $order) @if ($order->shipping) @else @endif @endforeach
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 }} {{ $order->shipping->name }} {{ $order->shipping->phone }} {{ $order->shipping->address }} not available not available not available {{ $order->status }}
@endsection @section('style') @endsection @section('script') @endsection