Creato Controller e model Cliente

This commit is contained in:
2023-07-03 20:00:43 +02:00
parent e9b1eb8d09
commit 95495035a3
7 changed files with 244 additions and 3 deletions

View File

@@ -0,0 +1,33 @@
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card">
<div class="card-header">{{ __('Utenti') }}</div>
<div class="card-body">
<table class="table table-responsive">
<thead>
<tr>
<th> Id </th>
<th> Nome </th>
<th> Email </th>
</tr>
</thead>
<tbody>
@foreach($utenti as $utente)
<tr>
<td>{{$utente->id}}</td>
<td>{{$utente->name}}</td>
<td>{{$utente->email}}</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
@endsection