@extends('master.authMaster')
@section('content')
Welcome to Dashboard, {{ Auth::user()->name }}.
Current Year: {{ \App\Models\AccountingYear::current()->accounting_year_financial }}
Cash in Hand
₹ {{ number_format($totalCash ?? 0, 2) }}
Cash at Bank
₹ {{ number_format($totalBank ?? 0, 2) }}
@endsection