@extends('highSuperAdmin.layout') @section('title', "All Admins") @section('page-name', "Admins Management") @section('page-detail', "All Admins Information Across Tenants") @section('body')

@if($admins->isEmpty())

No Admins Yet!

@else
@foreach($admins as $admin) @endforeach
Email Tenant Domain Created Date Status Action
{{ $admin->email }} {{ $admin->tenant->name ?? 'N/A' }} @if($admin->tenant)
https://{{ $admin->tenant->domain }}.platform.carismacar.org
@else N/A @endif
{{ \Carbon\Carbon::parse($admin->created_at)->format('m-d-y') }} @if($admin->tenant && $admin->tenant->active) Active @else Inactive @endif
@endif
@endsection @section('custom-scripts') @endsection