From 9f74c49b766b7dd27781cd36fca46b944372ad0b Mon Sep 17 00:00:00 2001 From: FlavioBarachino Date: Wed, 4 Oct 2023 16:12:58 +0200 Subject: [PATCH] Sistemazione menu e js per i grafici. --- config/adminlte.php | 44 ++++++++++++------- resources/views/components/charts.blade.php | 2 +- .../views/conti/report/catanno.blade.php | 4 +- resources/views/conti/report/list.blade.php | 11 ++--- 4 files changed, 38 insertions(+), 23 deletions(-) diff --git a/config/adminlte.php b/config/adminlte.php index ab6a17a..e631fff 100644 --- a/config/adminlte.php +++ b/config/adminlte.php @@ -321,21 +321,35 @@ return [ 'text' => 'Lista movimenti', 'route' => 'movimenti', ], - [ - 'text' => 'Categorie', - 'route' => 'categorie', - ], - [ - 'text' => 'Tags', - 'route' => 'tags', - ], - [ - 'text' => 'Report Movimenti', - 'route' => 'resoconto', - ], - [ - 'text' => 'Bilancio annuale', - 'route' => 'budget', + [ 'text' => 'Liste', + 'url' => '#', + 'icon' => 'fas fa-fw fa-sync', + 'submenu' => [ + [ + 'text' => 'Categorie', + 'route' => 'categorie', + ], + [ + 'text' => 'Tags', + 'route' => 'tags', + ], + ] + ], + [ 'text' => 'Reports', + 'url' => '#', + 'icon' => 'fas fa-fw fa-sync', + 'submenu' => [ + + [ + 'text' => 'Report Movimenti', + 'route' => 'resoconto', + ], + [ + 'text' => 'Bilancio annuale', + 'route' => 'budget', + ], + ] + ], [ 'text' => 'Import/Export', diff --git a/resources/views/components/charts.blade.php b/resources/views/components/charts.blade.php index 93d40c0..df9dfe7 100644 --- a/resources/views/components/charts.blade.php +++ b/resources/views/components/charts.blade.php @@ -1,5 +1,5 @@ @extends('conti.report.list') -@section('head_additional') +@section('js')