@extends(\Auth::user()->role != 10 ? 'layout' : 'layoutfrontdesk')
@section('title', 'Payment Method AR')
@section('css')
@endsection
@section('content')
No |
Name |
COA |
AP/AR |
Actions |
@if (!$pembayarans->isEmpty())
@foreach ($pembayarans as $pembayaran)
{{$loop->iteration }}
|
{{$pembayaran->nama_metode}}
|
({{@$pembayaran->coa->account_no ?? ''}}) {{@$pembayaran->coa->description ?? '-'}}
|
Account Payable: {!! $pembayaran->ap_payment ? '' : '' !!}
Account Receivable: {!! $pembayaran->ar_payment ? '' : '' !!}
|
|
@endforeach
@endif
@endsection
@section('js')
@endsection