@extends('layouts/acc_layout') @section('title', '| Fund Transfer DDI Register') @section('content') @include('successMsg')
Edit Fund Transfer DDI Request
{!! Form::open(array('url' => '','id'=>'entryForm', 'role' => 'form', 'class'=>'form-horizontal form-groups')) !!}
Transfer To:
Org. Branch Generate Date Project Name Project Type Debit Account Transaction Type
Branch Name Code Bank Name A/C Number Branch Name
{{ $transferInAccInfo->branchName }} {{ $transferInAccInfo->branchCodeWith0 }} {{ date ('d-m-Y', strtotime( ($transferInAccInfo->generateDate) )) }} {{ $transferInAccInfo->projectName }} {{ $transferInAccInfo->projectType }} {{ $transferInAccInfo->bankName }} {{ $transferInAccInfo->bankAcNumber }} {{ $transferInAccInfo->bankBranchName }}, {{ $transferInAccInfo->districtName }} {{ $transferInAccInfo->transactionType }}

Transfer From:
{{-- --}} @if($components->count() > 1) @else @endif @foreach ($components as $component) @endforeach @if($components->count() > 1) @endif @foreach ($BankAcRegisters as $BankAcRegister) @foreach ($components as $component) @php $key = $BankAcRegister->id . '.' . $BankAcRegister->ledgerIdFk . '.' . $BankAcRegister->projectId . '.' . $BankAcRegister->projectTypeId . '.' . $BankAcRegister->branchId . '.' . $component->id . '.' . $component->ledgerIdFk; //dd($FundTransferDdiRegisters); @endphp @endforeach @if($components->count() > 1) @endif @endforeach @foreach ($components as $component) @endforeach @if($components->count() > 1) @endif
SL# Org. Branch Bank Account InformationComponent AmountComponent Wise AmountComponent Wise Amount
Name Code Bank Name A/C Number Routing Number Branch Name{{ $component->name }}Total
{{ ++$no }} {{ $BankAcRegister->branchName }} {{ $BankAcRegister->branchCodeWith0 }} {{ $BankAcRegister->bankName }} {{ $BankAcRegister->bankAcNumber }} {{ $BankAcRegister->acRoutingNumber }} {{ $BankAcRegister->bankBranchName }}, {{ $BankAcRegister->district }} {!! Form::text('componentAmount['.$BankAcRegister->id.']['.$BankAcRegister->ledgerIdFk.']['.$BankAcRegister->projectId.']['.$BankAcRegister->projectTypeId.']['.$BankAcRegister->branchId.']['.$component->id.']['.$component->ledgerIdFk.']', $FundTransferDdiRegisters[$key]->amount ?? '', ['class'=>'form-control text-right amount component-amount', 'placeholder' => '-', 'data-id' => $component->id]) !!} {!! Form::text('componentRowTotal', $value = null, ['class' => 'form-control text-right amount component-row-total', 'style' => 'font-weight: bold', 'readonly', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off']) !!}
Total Amount{!! Form::text('componentColGrandTotal['.$component->id.']', $value = null, ['class'=>'form-control text-right amount component-col-grand-total', 'readonly', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off']) !!} {!! Form::text('totalColGrandTotal', $value = null, ['class' => 'form-control text-right amount total-col-grand-total', 'style' => 'font-weight: bold', 'readonly', 'type' => 'text', 'placeholder' => '-', 'autocomplete' => 'off']) !!}
{!! Form::label('submit', ' ', ['class' => 'col-sm-5 control-label']) !!}
{!! Form::submit('Submit', ['id' => 'fundTransferSubmit', 'class' => 'btn btn-success']) !!} Close
{!! Form::close() !!}
@endsection