@extends('admin.layout.app') @section('body')

Expenses Report

@foreach ($rows as $r) @endforeach
Date Type Total
{{ $r->d ?? '-' }} {{ ucfirst($r->type) }} {{ number_format($r->total, 2) }}
@endsection