@extends('admin.layouts.app') @section('content') {{-- Search --}}
@if(request('search')) Reinitialiser @endif
{{-- Table --}}
@forelse ($customers as $customer) @empty @endforelse
Client Email Commandes Total depense Inscrit le
{{ $customer->first_name }} {{ $customer->last_name }} {{ $customer->email }} {{ $customer->orders_count }} {{ number_format($customer->total_spent ?? 0, 2, ',', ' ') }} € {{ $customer->created_at->format('d/m/Y') }}
Aucun client trouvé.
@if($customers->hasPages())
{{ $customers->links() }}
@endif
@endsection