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

All Customers

@forelse($customers as $customer) @empty @endforelse
Name Email Phone Orders Joined Actions
{{ $customer->name }}
{{ $customer->email }} {{ $customer->phone ?? '-' }} {{ $customer->orders_count }} {{ $customer->created_at->format('M d, Y') }} View
No customers found
{{ $customers->links() }}
@endsection