@php $headerOption = [ 'title' => $module, 'header_buttons' => [], 'filters' => isset($filters) ? $filters : [], 'data' => isset($sponsorships) ? $sponsorships : [] ]; @endphp @extends('admin.layouts.layout', $headerOption) @push('page_css') @endpush @section('content')
Review and manage all sponsorship deals and resolve disputed milestones.
| RECIPIENT | SPONSOR | DEAL TITLE | VALUE | PROGRESS | STATUS | ACTION |
|---|---|---|---|---|---|---|
|
{{ strtoupper(substr($beneficiaryName, 0, 2)) }}
{{ $beneficiaryName }}
{{ ucfirst($sponsorship->beneficiary_type ?? 'N/A') }}{{ $beneficiaryType }}
|
{{ $sponsorName }}
|
{{ $sponsorship->offer_title ?? 'N/A' }}
@if($sponsorship->duration)
{{ $sponsorship->duration }} months
@endif
|
{!! \App\Helpers\Helper::price($sponsorship->funding_amount ?? 0, $sponsorship->currency ?? 'USD') !!}
|
{{ $completedMilestones }}/{{ $totalMilestones }} milestones
{!! \App\Helpers\Helper::price($totalPaid, $sponsorship->currency ?? 'USD') !!} paid
|
{{ $statusText }}
@if($disputedCount > 0)
{{ $disputedCount }} disputed
@endif
|
|