modifiche al template di auto e contratti

This commit is contained in:
Amministratore 2023-10-04 21:28:54 +02:00
parent f32e57d3bc
commit 2fe5027f8e
2 changed files with 17 additions and 17 deletions

View File

@ -107,7 +107,7 @@ return [
*/ */
'preloader' => [ 'preloader' => [
'enabled' => true, 'enabled' => false,
'img' => [ 'img' => [
'path' => 'vendor/adminlte/dist/img/AdminLTELogo.png', 'path' => 'vendor/adminlte/dist/img/AdminLTELogo.png',
'alt' => 'AdminLTE Preloader Image', 'alt' => 'AdminLTE Preloader Image',
@ -380,7 +380,7 @@ return [
], ],
[ [
'text' => 'Automobili', 'text' => 'Automobili',
'url' => '#', 'url' => '/admin/auto',
'icon' => 'fas fa-fw fa-car', 'icon' => 'fas fa-fw fa-car',
], ],
[ [

View File

@ -1,12 +1,14 @@
@extends('admin') @section('head_additional') @extends('adminlte::page')
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" /> @section('css')
@endsection @section('content') <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<div class="row"> @endsection
<div class="col-lg-12">
<h1 class="page-header">Lista Automobili</h1> @section('content_header')
</div> <h1>Lista Automobili</h1>
</div> @endsection
@section('content')
<div class="container"> <div class="container">
<!-- Content here --> <!-- Content here -->
<div class="row" > <div class="row" >
@ -62,11 +64,9 @@
</td> </td>
<td> <td>
<button class="btn btn-primary open_modal_modify" <button class="btn btn-primary open_modal_modify"
value="{{ $automobile->id; }}"> value="{{ $automobile->id; }}">Edit</button>
<i class="fa fa-pencil-square-o fw"></i> &nbsp; <a class="btn btn-danger"
</button>&nbsp; <a class="btn btn-danger" href="auto/delete?id={{ $automobile->id; }}">Canc.</a>&nbsp;
href="auto/delete?id={{ $automobile->id; }}"><i
class="fa fa-trash-o fa-fw"></i></a>&nbsp;
</td> </td>
</tr> </tr>
@endforeach @endforeach
@ -415,6 +415,6 @@
<!-- /MODAL --> <!-- /MODAL -->
@endsection @section('script') @endsection @section('js')
<script src="/js/app/auto.js"></script> <script src="/js/app/auto.js"></script>
@endsection @endsection