Files

20 lines
335 B
PHP
Raw Permalink Normal View History

2026-09-16 12:08:49 +02:00
@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