@extends('layouts.sidebar') @section('title', 'Nomadic - Partner Applications') @section('content')

Partner Applications

Manage Tokens
Total
{{ $stats['total'] }}
Pending
{{ $stats['pending'] }}
Under Review
{{ $stats['under_review'] }}
Approved
{{ $stats['approved'] }}
Rejected
{{ $stats['rejected'] }}
Setup Done
{{ $stats['setup_complete'] }}
@if(request()->hasAny(['search','status','city','vertical'])) @endif
@forelse($data as $app) @empty @endforelse
# Location Business City Verticals Studios Status Submitted
{{ $app->id }} {{ $app->location_name }} {{ $app->business_name }} {{ $app->city }}, {{ $app->country }} @foreach($app->studios->pluck('vertical_slug')->unique() as $v) {{ ucfirst(str_replace('-', ' ', $v)) }} @endforeach {{ $app->studios->count() }} @switch($app->status) @case('pending') Pending @break @case('under_review') Under Review @break @case('approved') Approved @break @case('rejected') Rejected @break @case('setup_started') Setup Started @break @case('invited') Invited @break @case('setup_complete') Setup Complete @break @default {{ $app->status }} @endswitch {{ $app->submitted_at ? $app->submitted_at->format('M d, Y') : 'N/A' }} View
No partner applications found
{!! $data->links('vendor.pagination.bootstrap-5') !!}
@endsection