WIP Integrazioni delle ultime modifiche. #4

Merged
fbarachino merged 50 commits from dev into main 2025-10-21 14:31:06 +00:00
Showing only changes of commit a7e55dd340 - Show all commits

View File

@ -10,7 +10,9 @@
var data = google.visualization.arrayToDataTable([
['Categoria', 'resoconto'],
@foreach($dataSpesa as $dato)
@if($dato->resoconto !='')
['{{ $dato->cat_name }}', {{ $dato->resoconto }}],
@endif
@endforeach
]);
@ -32,7 +34,9 @@
var data = google.visualization.arrayToDataTable([
['Categoria', 'resoconto'],
@foreach($dataEntrate as $dato)
@if($dato->resoconto !='')
['{{ $dato->cat_name }}', {{ $dato->resoconto }}],
@endif
@endforeach
]);
@ -52,4 +56,4 @@
@endsection
@section('chart_divE')
<div id="piechartE" style="width: 500px; height: 500px;"></div>
@endsection
@endsection