@extends('layouts.app') @section('title', 'Clients') @section('breadcrumb') @endsection @section('content')

Clients

@if($canManage) Nouveau Client @endif
@forelse($customers as $customer) @empty @endforelse
Nom Email Téléphone Ville Achats Actions
{{ $customer->name }} {{ $customer->email ?? '-' }} {{ $customer->phone ?? '-' }} {{ $customer->city ?? '-' }} {{ $customer->sales_count }} @if($canManage)
@csrf @method('DELETE')
@endif
Aucun client enregistré.
@endsection