@extends('highSuperAdmin.layout') @section('title',"Dashboard") @section('page-name',"Dashboard") @section('page-detail',"Welcome to SuperAdmin Panel") @section('body')
Total Tenants

{{ $data['totalTenants'] }}

Active Tenants

{{ $data['activeTenants'] }}

Total Admins

{{ $data['totalAdmins'] }}

Inactive Tenants

{{ $data['totalTenants'] - $data['activeTenants'] }}

Tenant Growth Overview
Tenant Plans Distribution
Recent Tenants
View All

@if($data['recentTenants']->isEmpty())

No tenants yet!

@else
@foreach($data['recentTenants'] as $tenant) @endforeach
Tenant Name Domain Plan Status Created Date Action
{{ $tenant->name }} {{ $tenant->domain }} {{ ucfirst($tenant->plan ?? 'Basic') }} @if($tenant->active) Active @else Inactive @endif {{ \Carbon\Carbon::parse($tenant->created_at)->format('m-d-Y') }}
@endif
@endsection @section('custom-scripts') @endsection