@extends('admin.layout') @section('title', 'Manage Tenants') @section('content')
Reset

Tenants ({{ $tenants->total() }})

@foreach($tenants as $t) @endforeach
NamePlanStatusUsersExpiresActiveEdit
{{ $t->name }} {{ $t->plan->name ?? '—' }} {{ ucfirst($t->subscription_status) }} {{ $t->users->count() }} {{ $t->subscription_ends_at ? \Carbon\Carbon::parse($t->subscription_ends_at)->format('M d, Y') : '—' }}
@csrf
{{ $tenants->links() }}
@endsection