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