@extends('welcome') @section('content')

Liste des clients

@foreach ($clients as $item) @endforeach
Image Nom Tel Adresse Action
@if(!empty($item->photo))@endif {{$item->prenom}} {{$item->nom}} {{$item->adresse}} {{$item->tel}} {{-- {!! Form::open(['method' => 'DELETE', 'route'=>['client.destroy', $item->id], 'style'=> 'display:inline', 'onclick'=>"if(!confirm('Êtes-vous sûr de vouloir supprimer cet enregistrement ?')) { return false; }"]) !!} {!! Form::close() !!} --}}
{{-- --}}
@endsection