@extends('layouts.adminapp') @section('title') {{ __('lng.CashFlow') }} - {{ __('lng.Print') }} @endsection @section('active_report', 'active') @section('open_report', 'open') @section('open_account', 'open') @section('active_account', 'active') @section('cash_flow', 'active') @section('content')
| {{ __('lng.Date') }} | {{ __('lng.Voucher') }} | {{ __('lng.Ledger') }} | {{ __('lng.Receipt') }} | {{ __('lng.Payment') }} | {{ __('lng.ClosingBalance') }} |
|---|---|---|---|---|---|
| {{ __('lng.OpeningBalance') }} | @currency($balance) | ||||
| {{ \Carbon\Carbon::parse($row->date)->format('d-m-Y') }} | {{ $row->voucher }} | {{ $row->ledger }} | {{ $row->credit > 0 ? number_format($row->credit, 2) : '' }} | {{ $row->debit > 0 ? number_format($row->debit, 2) : '' }} | @currency($balance) |