@extends('layouts.admin') @section('title', 'Tenant Onboarding') @push('styles') @endpush @section('content')

Tenant Onboarding

Tenants who signed up between {{ $maxDays }} and {{ $minDays }} day(s) ago and haven't completed all setup milestones. Reach out before they cool off.

@if($stuckCount > 0)
{{ $stuckCount }}
tenant{{ $stuckCount === 1 ? '' : 's' }} stuck below 100% in this window
@endif
@if($rows->isEmpty())
No tenants in this signup window. Try widening the range.
@else @foreach($rows as $r) @endforeach
Tenant Owner Signed up Plan Milestones Progress Action
{{ $r->tenant->name }}
{{ $r->tenant->slug }}
{{ optional($r->tenant->user)->name ?? '—' }}
{{ optional($r->tenant->user)->email }}
{{ $r->tenant->created_at->format('M d') }}
{{ $r->days_old }}d ago
{{ ucfirst($r->tenant->plan ?? 'free') }} Products Form Order Paid {{ $r->completed }}/4 @php $pct = $r->score * 100; $cls = $pct === 100.0 ? 'full' : ($pct >= 50 ? 'warn' : 'bad'); @endphp
Open
@endif @endsection