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

Grant Application Details

Nav to main website
View →
@if ($errors->any())
Please fix the following:
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif

Form Info

User Name: {{ $grant->user?->first_name }} {{ $grant->user?->last_name }}

Store name: {{ $grant->store }}

Grant Lifecycle

Flow: {{ $grant->grant_flow === 'pre' ? 'Pre-Grant (instant)' : 'Post-Grant (reviewed)' }} · Stage: {{ str_replace('_', ' ', $grant->stage) }}

Capital: ${{ number_format($grant->capital, 2) }} · Current Balance: ${{ number_format($grant->balance, 2) }} · Profit: ${{ number_format($grant->profit, 2) }}

@if($grant->grant_flow === 'pre')

Requirement: {{ $grant->required_active_referrals }} active team members within {{ $grant->period_days }} days · Currently eligible: {{ (new \App\Services\GrantService())->eligibleActiveReferralsCount($grant) }} · Requirement met: {{ $grant->requirement_met_at ? $grant->requirement_met_at->format('d M Y') : 'Not yet' }}

@endif

Starts: {{ optional($grant->starts_at)->format('d M Y') ?? '—' }} · Expires: {{ optional($grant->expires_at)->format('d M Y') ?? '—' }} · Capital retracted: {{ optional($grant->capital_retracted_at)->format('d M Y') ?? '—' }}

Grant Details

Selected Grant: {{ $grant->grant_type }}

Full Name: {{ $grant->name }}

Recipient Location: {{ $grant->location }}

Reason for grant: {{ $grant->reason }}

How many active C2C store owners have you registered under you?: {{ $grant->referrals }}

Grant category: {{ $grant->categories }}

Why you deserve the grant: {{ $grant->deserve }}

@php $bot = App\Models\Investment::find($grant->investment_id); @endphp

Choose your Insurance AI: {{ $bot ? $bot->plan?->name . ' - ($' . number_format($bot->plan?->balance ?? 0, 2) . ')' : 'N/A' }}

How will you promote Global E-commerce Arbitrage Store to the community.: {{ $grant->promote }}

What information channels will you promote: {{ $grant->channels }}

Please list all social networks or communities (link) you have:: {{ $grant->social_networks }}

What's your email: {{ $grant->email }}

Where is the most convenient place to contact you?: {{ $grant->contact }}

@if($grant->grant_flow === 'post' && $grant->stage === 'awaiting_review')
@csrf
@else

@if($grant->grant_flow === 'pre') Pre-Grants are disbursed instantly at apply time and don't require manual approval. @else This application has already been {{ $grant->stage === 'declined' ? 'declined' : 'processed' }}. @endif

@endif {{-- ══════════════════════════════════════════════════════ DANGER ZONE — hard delete Available regardless of stage. Reverses everything the grant did to the user's Grant Funds, forfeits anything still open under it, frees any team members locked to it, and permanently removes the grant record. ══════════════════════════════════════════════════════ --}}

⚠ Danger Zone

Permanently deletes this grant. This forfeits anything still open under it (AI bots, pending bids, held ownerships, Copy Pilot follows), strips whatever capital and unwithdrawn profit it contributed out of the user's Grant Funds, and frees any team members who were locked specifically to it. This cannot be undone.

@csrf
@endsection