@extends('layouts.dashboard') @section('title', __('messages.dashboard')) @section('header', __('messages.dashboard')) @section('sidebar') @include('super-admin.partials.sidebar') @endsection @section('content')
{{ $totalCompanies ?? 0 }}
Active companies in system
{{ $activeSubscriptions ?? 0 }}
Currently active plans
{{ $totalUsers ?? 0 }}
Registered users
{{ number_format($totalRevenue ?? 0, 0) }}
TZS total revenue
{{ $totalProperties ?? 0 }}
Listed properties
{{ number_format($monthlyRevenue ?? 0, 0) }}
TZS this month
{{ $companiesByStatus['suspended'] ?? 0 }}
Companies suspended
{{ $companiesByStatus['expired'] ?? 0 }}
Expired subscriptions
{{ __('messages.no_data') }}
| {{ __('messages.name') }} | {{ __('messages.email') }} | {{ __('messages.status') }} | {{ __('messages.created') }} | {{ __('messages.actions') }} |
|---|---|---|---|---|
|
@if($company->logo)
|
{{ $company->email }} | {{ $company->is_active ? __('messages.active') : __('messages.inactive') }} | {{ $company->created_at->format('M d, Y') }} | {{ __('messages.view') }} |
|
{{ __('messages.no_companies_found') }} |
||||