Risolto piccole problematiche ai file e installato libreria milon/barcode per generazione barcodes

This commit is contained in:
2024-07-24 08:51:39 +00:00
parent fafb02488e
commit 036981f16e
24 changed files with 226 additions and 260 deletions

View File

@@ -41,32 +41,32 @@
@foreach($automobili ?? '' as $automobile)
<tr>
<td><a href="auto/detail?id={{ $automobile->id }}">{{
$automobile->marca; }}</a></td>
<td>{{ $automobile->modello; }}</td>
<td>{{ $automobile->targa; }}</td>
$automobile->marca}}</a></td>
<td>{{ $automobile->modello}}</td>
<td>{{ $automobile->targa}}</td>
<td>
<button class="btn btn-primary open_modal_rifornimento"
value="{{ $automobile->id; }}">
value="{{ $automobile->id}}">
<span class="material-symbols-outlined">local_gas_station</span>
</button>&nbsp;
<button class="btn btn-primary open_modal_revisione"
value="{{ $automobile->id; }}">
value="{{ $automobile->id}}">
<span class="material-symbols-outlined"> checklist </span>
</button>&nbsp;
<button class="btn btn-primary open_modal_manutenzione"
value="{{ $automobile->id; }}">
value="{{ $automobile->id}}">
<span class="material-symbols-outlined"> plumbing </span>
</button>&nbsp;
<button class="btn btn-primary open_modal_accessori"
value="{{ $automobile->id; }}">
value="{{ $automobile->id}}">
<span class="material-symbols-outlined"> park </span>
</button>&nbsp;
</td>
<td>
<button class="btn btn-primary open_modal_modify"
value="{{ $automobile->id; }}">Edit</button>
value="{{ $automobile->id}}">Edit</button>
&nbsp; <a class="btn btn-danger"
href="auto/delete?id={{ $automobile->id; }}">Canc.</a>&nbsp;
href="auto/delete?id={{ $automobile->id}}">Canc.</a>&nbsp;
</td>
</tr>
@endforeach