@extends('layouts.master') @section('title', 'Account Receivable') @section('page-header') Account Receivable @stop @push('style') @endpush @section('content')
| Sl | Account Name | Balance |
|---|---|---|
| {{ $loop->iteration }} | {{ $account->name }} | {{ number_format($account->balance, 2) }} |
| Total= | {{ number_format($transactions->sum('balance'), 2) }} | |