Effettuato modifiche su menu e view tags, resoconto e budget

This commit is contained in:
Amministratore 2023-10-04 15:50:55 +02:00
parent 0a166d75c9
commit 48ec4d62f3
4 changed files with 22 additions and 19 deletions

View File

@ -327,15 +327,15 @@ return [
],
[
'text' => 'Tags',
'url' => '#',
'route' => 'tags',
],
[
'text' => 'Report Movimenti',
'url' => '#',
'route' => 'resoconto',
],
[
'text' => 'Bilancio annuale',
'url' => '#',
'route' => 'budget',
],
[
'text' => 'Import/Export',

View File

@ -1,11 +1,11 @@
<!-- Report categorie dell'anno suddiviso per mesi -->
@extends('admin')
@extends('adminlte::page')
@section('content_header')
@endsection
<h1>Rapporto dei movimenti</h1>
@section('content')
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Rapporto dei movimenti</h1>
</div>
</div>
<div class="row">
<div class="col">
<a href="{{ route('budgetxls');}}" class="btn btn-primary">Esporta in .ods</a>
@ -76,7 +76,8 @@
@endsection
@section('script')
@section('js')
<script src="/js/app/conti_catanno.js"></script>
@endsection

View File

@ -1,4 +1,4 @@
@extends('admin')
@extends('adminlte::page')
@section('content')
<div class="row">
<div class="col-lg-12">
@ -69,6 +69,6 @@
</div>
@endsection
@section('script')
@section('js')
<script src="/js/app/conti_categorie.js"></script>
@endsection

View File

@ -1,9 +1,11 @@
@extends('admin') @section('content')
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">Lista dei tag</h1>
</div>
</div>
@extends('adminlte::page')
@section('content_header')
<h1>Lista dei tag</h1>
@endsection
@section('content')
<div class="container">
<!-- Content here -->
<button class="btn btn-warning btn-detail open_modal_new">Nuovo Tag</button>
@ -90,6 +92,6 @@
<!-- /.col-lg-12 -->
@endsection @section('script')
@endsection @section('js')
<script src="/js/app/tag.js"></script>
@endsection