Risolto piccole problematiche ai file e installato libreria milon/barcode per generazione barcodes
This commit is contained in:
@@ -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>
|
||||
<button class="btn btn-primary open_modal_revisione"
|
||||
value="{{ $automobile->id; }}">
|
||||
value="{{ $automobile->id}}">
|
||||
<span class="material-symbols-outlined"> checklist </span>
|
||||
</button>
|
||||
<button class="btn btn-primary open_modal_manutenzione"
|
||||
value="{{ $automobile->id; }}">
|
||||
value="{{ $automobile->id}}">
|
||||
<span class="material-symbols-outlined"> plumbing </span>
|
||||
</button>
|
||||
<button class="btn btn-primary open_modal_accessori"
|
||||
value="{{ $automobile->id; }}">
|
||||
value="{{ $automobile->id}}">
|
||||
<span class="material-symbols-outlined"> park </span>
|
||||
</button>
|
||||
</td>
|
||||
<td>
|
||||
<button class="btn btn-primary open_modal_modify"
|
||||
value="{{ $automobile->id; }}">Edit</button>
|
||||
value="{{ $automobile->id}}">Edit</button>
|
||||
<a class="btn btn-danger"
|
||||
href="auto/delete?id={{ $automobile->id; }}">Canc.</a>
|
||||
href="auto/delete?id={{ $automobile->id}}">Canc.</a>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
|
||||
Reference in New Issue
Block a user