@extends('admin.layouts.app') @section('title', 'Customers') @section('content')

Customers

Manage your customer base

@forelse($customers as $customer) @empty @endforelse
Customer Phone Location Orders Joined Actions

{{ $customer->name }}

{{ $customer->email ?? 'No email' }}

{{ $customer->phone }} {{ $customer->district?->name ?? '-' }}, {{ $customer->area?->name ?? '-' }} {{ $customer->orders_count }} {{ $customer->created_at->format('M d, Y') }}
No customers found
{{ $customers->links() }}
@endsection