@php $headerOption = [ 'title' => 'Payment Collections', 'header_buttons' => [], 'filters' => [], 'data' => [] ]; $sponsorship = $sponsorship ?? null; $installments = $installments ?? collect(); $beneficiaryName = $beneficiaryName ?? 'N/A'; $sponsorName = $sponsorName ?? 'N/A'; @endphp @extends('admin.layouts.layout', $headerOption) @push('page_css') @endpush @section('content')
{{ $beneficiaryName }} - {{ $sponsorship->offer_title ?? 'N/A' }}
| DATE | SPONSORSHIP | RECIPIENT | MILESTONE | AMOUNT | ADMIN FEE ({{ $adminFeePercent ?? \Config::get('settings.admin_transaction_fees', 10) }}%) | PAYABLE | TRANSACTION ID | TRANSFER DATE | STATUS | ACTION | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ $installmentDate }} |
{{ $sponsorship->offer_title ?? 'N/A' }}
{{ $sponsorName }}
|
{{ $beneficiaryInitials }}
{{ $beneficiaryName }}
{{ ucfirst($sponsorship->beneficiary_type ?? 'N/A') }}
|
{{ $milestoneName }} | {!! \App\Helpers\Helper::price($installment->installment_amount, $sponsorship->currency ?? 'USD') !!} | {!! \App\Helpers\Helper::price($adminFee, $sponsorship->currency ?? 'USD') !!} | {!! \App\Helpers\Helper::price($payable, $sponsorship->currency ?? 'USD') !!} | {{ $transactionId }} | {{ $transferDate }} | {{ $statusName }} | @php $vendorPayout = $installment->vendorPayoutTransaction ?? null; @endphp @if($isTransferred && $vendorPayout) @else — @endif | |