@extends('layouts.app') @section('title', 'Simple Accounts') @section('content')

Simple Accounts

Add Entry
Reset
Total Amount: ৳ {{ number_format($totalAmount, 2) }}
@forelse($accounts as $acc) @empty @endforelse
Date Voucher No Project Note Amount Actions
{{ $acc->entry_date->format('d M, Y') }} {{ $acc->voucher_no ?? '—' }} @if($acc->project) {{ $acc->project->project_name }} @else General/None @endif {{ $acc->note ?? '—' }} ৳ {{ number_format($acc->amount, 2) }}
@csrf @method('DELETE')
No account entries found.
@if($accounts->hasPages()) @endif
@endsection