@extends('layouts.master') @section('title', 'Account Receivable') @section('page-header') Account Receivable @stop @push('style') @endpush @section('content')

Account Receivable

@foreach ($transactions as $account) @endforeach @if(count($transactions) > 0) @endif
Sl Account Name Balance
{{ $loop->iteration }} {{ $account->name }} {{ number_format($account->balance, 2) }}
Total= {{ number_format($transactions->sum('balance'), 2) }}
@endsection