@extends('layouts.master') @section('css') @endsection @section('title') Cash Flow @endsection @section('content')
Cash Flow
@foreach ($groups as $group) @if ($group->inflow == 0) @continue @endif @endforeach
Inflow Amount
{{ $group->name }} {{ $numberFormat($group->inflow) }}
@foreach ($groups as $group) @if ($group->outflow == 0) @continue @endif @endforeach
Outflow Amount
{{ $group->name }} {{ $numberFormat($group->outflow) }}
Total {{ $numberFormat($inflowTotal) }} Total {{ $numberFormat($outflowTotal) }}
@csrf
@endsection @section('script') @endsection