@extends('layouts.app') @section('title', __('Cash In Hand')) @section('content')

@lang('Cash In Hand') @lang('Track and manage your cash balances')

@component('components.widget', ['class' => 'box-primary', 'title' => __( 'Cash In Hand Entries' )]) @slot('tool')
@lang('messages.add')
@endslot
Total Cash In {{ number_format($totals['receipt'] ?? 0,2) }}
Total Cash Out {{ number_format($totals['payment'] ?? 0,2) }}
Net Balance {{ number_format($totals['balance'] ?? 0,2) }}
Sr No. # Date Type Ledger Details Dr / Cr Amount Balance Actions
@endcomponent
@endsection @section('javascript') @endsection