@extends('layouts.template') @section('content')

Liste clients

@if(session('success')) @endif
@foreach($clients as $client) @endforeach
Code client Client Responsable Télèphone E-mail Actions
{{ $client->id }} {{ $client->client }} {{ $client->created_at->format('m/d/Y') }} {{ $client->responsable }} {{ $client->telRes }} {{ $client->tel }} {{ $client->ville }} {{ $client->email }}

{!! $clients->links('pagination::bootstrap-4') !!}
@endsection