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

@yield('page-header')

@include('includes.input-groups.select-group', ['modelVariable' => 'accounts', 'edit_id' => request('account_id')])
Refresh
@foreach ($transactions as $account) @endforeach @if(count($transactions) > 0) @endif
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) }}
@include('partials._paginate', ['data' => $transactions])
@endsection @section('js') @endsection