@php
$accs = DB::table('accountancies')
->where('projection_order_id', $projection_order_id->id)
->get();
@endphp
@foreach ($accs as $acc)
{{ $acc->bank_sub_date ?? old('bank_sub_date') }} |
{{ $acc->ldbc_bill_no ?? old('ldbc_bill_no') }} |
{{ $acc->ldbc_bill_date ?? old('ldbc_bill_date') }} |
{{ $acc->maturity_date ?? old('maturity_date') }} |
{{ $acc->lc_contract ?? old('lc_contract') }} |
{{ $acc->payment_terms }}
|
{{ $acc->realized_date ?? old('realized_date') }} |
{{ $acc->realized_value ?? old('realized_value') }} |
{{ $acc->short_value ?? old('short_value') }} |
{{ $acc->bank_name }} |
{{ $acc->remarks ?? old('remarks') }} |
|
@endforeach