@extends('layouts.admin') @section('title', 'Tenant Onboarding') @push('styles') @endpush @section('content')
Tenants who signed up between {{ $maxDays }} and {{ $minDays }} day(s) ago and haven't completed all setup milestones. Reach out before they cool off.
| 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 |