rimosso righe vuote per i resoconti

This commit is contained in:
Amministratore 2025-10-21 11:35:12 +02:00
parent a7e55dd340
commit b98a80aad0

View File

@ -25,11 +25,12 @@
</thead>
<tbody>
@foreach( $dataSpesa as $dato )
@if($dato->resoconto !='')
<tr>
<td><a href="/admin/movimenti/report/movimenti_categoria?cat={{ $dato->id }}&month={{ $_GET['Month'] ?? date('m')}}&year={{ date('Y') }}">{{ $dato->cat_name }}</a> </td>
<td>{{ $dato->resoconto }}</td>
</tr>
@endif
@endforeach
</tbody>
</table>
@ -55,11 +56,12 @@
</thead>
<tbody>
@foreach( $dataEntrate as $dato )
@if($dato->resoconto !='')
<tr>
<td><a href="/admin/movimenti/report/movimenti_categoria?cat={{ $dato->id }}&month={{ $_GET['Month'] ?? date('m')}}&year={{ date('Y')}}">{{ $dato->cat_name }}</a> </td>
<td>{{ $dato->resoconto }}</td>
</tr>
@endif
@endforeach
</tbody>
</table>