@extends('admin::layouts.master') @section('content')
Order Lists
@if(isset($orders) && $orders->count() > 0) @foreach($orders as $key => $order) @endforeach
S.N Order No Name Email Quantity Shipping Total Amount Status
{{ $key + 1 }} {{ $order->order_number ?? '-' }} {{ $order->name ?? '-' }} {{ $order->email ?? '-' }} {{ $order->quantity ?? '-' }} {{ $order->shipping ?? '-' }} {{ $order->total_amount ?? '-' }} {{ $order->status ?? 'Pending' }}
@else
No Orders Found
@endif
@endsection