Focus Humanitarian Assistance {{ auth()->user()->country->name ?? '' }}
Unit: {{ $rop['data']['office']['name'] ?? '' }}
RELEASE OF PAYMENT
|
| Fund | Project | Activity | District | Location | Amount | Remarks |
|---|---|---|---|---|---|---|
| {{ $item['fund'] }} | {{ $item['project'] }} | {{ $item['activity_name'] }} | {{ $item['district_name'] }} | {{ $item['activity_location'] }} | {{ number_format($item['amount'], 0) }} | {{ $item['remarks'] }} |
|
{{-- Right: Amount + Bank details --}} |
Amount in Figure
{{ number_format($rop['data']['amount_figure'], 0) }}
Amount in Words:
{{ $rop['data']['amount_words'] }}
Payee Account Detail (direct cheque deposit)
|
| Prepared By | @foreach($sections as $sectionName => $status){{ $sectionName }} | @endforeach
|---|---|
| {{ trim(($rop['data']['user']['salutation'] ?? '').' '.($rop['data']['user']['first_name'] ?? '').' '.($rop['data']['user']['last_name'] ?? '')) }} Date: {{ \Carbon\Carbon::parse($rop['data']['created_at'])->format('d-M-Y') }} | {{-- Each approval section --}} @foreach($sections as $sectionName => $status) @php $feedback = $latestBySection->get($sectionName); @endphp
{{ $status ?? 'Pending' }} @if($feedback) {{ trim((data_get($feedback, 'user.salutation', '')).' '.(data_get($feedback, 'user.first_name', '')).' '.(data_get($feedback, 'user.last_name', ''))) }} {{ data_get($feedback, 'remarks') }} Date: {{ \Carbon\Carbon::parse(data_get($feedback, 'created_at'))->format('d-M-Y') }} @endif |
@endforeach