@extends('admin.layout') @section('page-title', 'Customers') @section('content')

Customers

Add New Customer
@if(request('search')) Clear @endif
@forelse($customers as $customer) @empty @endforelse
Name Email Phone Orders Created Actions
{{ $customer->name }} {{ $customer->email ?? 'N/A' }} {{ $customer->phone ?? 'N/A' }} {{ $customer->orders_count }} {{ $customer->created_at->format('M d, Y') }} View Edit
@csrf @method('DELETE')
No customers found
{{ $customers->links() }}
@endsection