@extends('layouts.admin_layout') @section('content')

Grant Tiers

Configure each grant's amount, expiry (n) days, required active team members, and the requirements text shown to users. Changes only apply to grants issued after saving -- grants already running keep the values they were issued with.

@foreach(['pre' => 'Pre-Grant Tiers (instant disbursement)', 'post' => 'Post-Grant Tiers (admin-reviewed)'] as $type => $label)

{{ $label }}

@forelse($tiers->where('type', $type) as $tier) @empty @endforelse
Name Amount Expiry (days) Active Team Members Required Status Actions

{{ $tier->name }}

@if($tier->ai_requirement)

AI: {{ $tier->ai_requirement }}

@endif
${{ number_format($tier->amount, 2) }} {{ $tier->expiry_days }} {{ $tier->required_active_referrals }} @if($tier->is_active) Active @else Disabled @endif
Edit
@csrf
@csrf @method('DELETE')
No {{ $type }} tiers yet.
@endforeach
@endsection