diff --git a/config/adminlte.php b/config/adminlte.php index 94fabe8..eb270fc 100644 --- a/config/adminlte.php +++ b/config/adminlte.php @@ -421,6 +421,13 @@ return [ 'route' => 'calendario', 'icon' => 'fas fa-fw fa-calendar', ], + ['header' => 'CONSUMI'], + [ + 'text' => 'GAS', + 'route' => 'gas', + 'icon' => 'fas fa-fw fa-fire', + 'can' => ['consumi'] + ], ['header' => 'AMMINISTRAZIONE'], [ 'text' => 'Utenti', @@ -428,6 +435,13 @@ return [ 'icon' => 'fas fa-fw fa-user', 'can' => ['amministrazione'] ], + ['header' => 'UTILI'], + [ + 'text' => 'Meeting Room', + 'route' => 'meeting', + 'icon' => 'fas fa-fw fa-file-video', + // 'can' => ['amministrazione'] + ], ], diff --git a/resources/views/components/chartGas.blade.php b/resources/views/components/chartGas.blade.php index 13ccf2f..060ba0c 100644 --- a/resources/views/components/chartGas.blade.php +++ b/resources/views/components/chartGas.blade.php @@ -1,5 +1,6 @@ @extends('letture.gas.list') -@section('head_additional') +@section('js') +@parent + @endsection diff --git a/resources/views/letture/gas/list.blade.php b/resources/views/letture/gas/list.blade.php index c85b9b5..d19c5e1 100644 --- a/resources/views/letture/gas/list.blade.php +++ b/resources/views/letture/gas/list.blade.php @@ -1,10 +1,12 @@ -@extends('admin') -@section('content') +@extends('adminlte::page') + +@section('content_header')