@extends('layout.app')
@section('title', __('accounts'))
@section('content')
{{ __('sl') }} |
{{ __('account_no') }} |
{{ __('name') }} |
{{ __('balance') }} |
{{ __('note') }} |
{{ __('action') }} |
@foreach ($accounts as $account)
{{ $loop->iteration }} |
{{ $account->account_no }} |
{{ $account->name }} |
@if ($account->total_balance)
{{ numberFormat($account->total_balance ?? 0.0) }} |
@endif
{{ $account->note ?? 'N/A' }} |
|
@endforeach
@endsection