Account List

@if (count($accounts) === 0)
  Invalid Voucher type! Please select a Voucher type.
@else
@foreach($accounts as $account) @endforeach
Account ID Account Name Category Balance Open Balance
{{$account->account_id}} {{$account->master_name}} {{$account->category}} {{ number_format($account->cl_balance, 2, '.', ',') }} {{ number_format($account->op_balance, 2, '.', ',') }}
@endif