Opening Balances

Set Opening Balance
@forelse($openingBalances as $key => $openingBalance) @empty @endforelse
ID Partner As Of Date Opening Balance Amount Current Balance Notes Created At Actions
{{ $key + 1 }} {{ $openingBalance->partner->full_name ?? 'N/A' }} {{ date('d-m-Y', strtotime($openingBalance->as_of_date)) }} {{ number_format($openingBalance->amount, 2) }} {{ number_format($openingBalance->partner->getClosingBalance() ?? 0, 2) }} {{ Str::limit($openingBalance->notes, 50) ?? '-' }} {{ $openingBalance->created_at->format('d-m-Y H:i') }} Edit
@csrf @method('DELETE')
No opening balances found.