@extends('layouts.superadmin.admin') @section('title') Tenants @endsection @section('content')

Tenants

Total Tenants
{{number_format($total_tenants)}}
Total Users
{{number_format($total_users)}}
Total Subscriptions
{{number_format($total_subscriptions, 2)}}
Total Courses
{{number_format($total_courses)}}

All Tenants
@if(count($tenants) > 0 ) @foreach($tenants as $tenant) @php $tenant_no++; $community_logo = App\Models\Setting::where('user_id', $tenant->creatorId())->first(); @endphp @endforeach
s/n Community Name Domain Email Address Phone Number Action
{{$tenant_no}} {{$tenant->domain}} {{$tenant->email}} {{$tenant->phone_number}}
@else

There are no packages

@endif
@endsection