@extends('layouts.app') @section('content')

Admin Dashboard

System overview and tenant management

Total Tenants

{{ $stats['total_tenants'] ?? 0 }}

Active Tenants

{{ $stats['active_tenants'] ?? 0 }}

Total Commands

{{ $stats['total_commands'] ?? 0 }}

Total Messages

{{ $stats['total_messages'] ?? 0 }}

All Tenants

@forelse($tenants as $tenant) @empty @endforelse
Channel User Status Created Actions
@if($tenant->channel_avatar_url) Avatar @endif

{{ $tenant->channel_title }}

{{ $tenant->channel_id }}

{{ $tenant->user->name }}

{{ $tenant->user->email }}

{{ ucfirst($tenant->status) }} {{ $tenant->created_at->format('M d, Y') }} Logs View
No tenants found
@if($tenants->hasPages())
{{ $tenants->links() }}
@endif
@endsection