@extends('admin.layouts.app') @section('content')
{{-- Filters --}}
@if (request('search')) Reinitialiser @endif
{{ $customers->total() }} client{{ $customers->total() > 1 ? 's' : '' }}
@forelse ($customers as $customer) @empty @endforelse
Client Commandes Total depense Inscrit le Actions
{{ strtoupper(mb_substr($customer->name, 0, 1)) }}
{{ $customer->name }}
{{ $customer->email }}
{{ $customer->orders_count }} {{ number_format($customer->orders_total ?? 0, 2, ',', ' ') }} € {{ $customer->created_at->format('d/m/Y') }}
Aucun client.
@if ($customers->hasPages())
{{ $customers->links() }}
@endif
@endsection