Files

20 lines
335 B
PHP

@extends('layouts.app')
@section('content')
<h2> Liste des clients : </h2>
<table>
<tr>
<th>Nom</th>
<!-- <th>Email</th>
<th>Ville</th> -->
</tr>
<!-- @foreach($clients as $client) -->
<tr>
<td>{{ $clients->name }}</td>
</tr>
<!-- @endforeach -->
</table>
@endsection