@extends('Admin.layout.app') @section('title','Customer Records') @section('page-title','Customer Records') @section('content')

Customers Records

@forelse($orders as $order) @empty @endforelse
ID Customer Phone Date Grand Total Payment Status Action
#{{ $order->id }}
{{ $order->customer->name }}
{{ $order->customer->urdu_name }}
{{ $order->customer->phone ?? '-' }}
{{ $order->customer->phone2 ?? '-' }}
{{ $order->order_date->format('d M Y h:i A') }} {{ $order->grand_total ?? '0.00' }}
{{ $order->payment_status }} Detail
No customers found.
@endsection