@extends('layouts.master') @section('title', 'Cashbook Report') @section('styles') @endsection @section('content')
| Date | Description | Ref | In | Out | Balance |
|---|---|---|---|---|---|
| {{ $txn['date'] }} |
{{ $txn['description'] }}
|
{{ $txn['reference'] }} | {{ $txn['in'] > 0 ? number_format($txn['in'], 2) : '' }} | {{ $txn['out'] > 0 ? number_format($txn['out'], 2) : '' }} | {{ number_format($txn['balance'], 2) }} |
| No cashbook transactions found for the selected period. | |||||
| Period Totals | {{ number_format($reportData['period_totals']['in'], 2) }} | {{ number_format($reportData['period_totals']['out'], 2) }} | |||