@extends('layouts.app') @section('title', 'Platform console') @section('content')

Platform console

Signed in as {{ auth('admin')->user()->email }} ({{ auth('admin')->user()->role }}).

Organisations
@forelse (\App\Models\Tenant::query()->with('subscription.plan')->latest()->take(25)->get() as $tenant) @empty @endforelse
OrganisationStatusPlanTrial endsSigned up
{{ $tenant->name }} {{ ucfirst(str_replace('_', ' ', $tenant->status)) }} {{ $tenant->subscription?->plan?->name ?? '—' }} {{ $tenant->trial_ends_at?->format('d M Y') ?? '—' }} {{ $tenant->created_at->format('d M Y') }}
No organisations yet.
@endsection