@extends('admin.layouts.app') @section('title', 'Tenants') @section('page-title', 'Tenant Management') @section('breadcrumb') Admin / Tenants @endsection @section('content')
Manage all tenants in the system
| Tenant | Contact | Package | Status | Created | Actions |
|---|---|---|---|---|---|
|
{{ $tenant->name }}
{{ $tenant->slug }}
|
{{ $tenant->email }}
{{ $tenant->phone ?? 'N/A' }}
|
@if($tenant->subscriptions && $tenant->subscriptions->first()) {{ $tenant->subscriptions->first()->subscription_name }} @else No package @endif | {{ ucfirst($tenant->status ?? 'inactive') }} | {{ $tenant->created_at->format('M j, Y') }} | |
|
No tenants found {{ isset($error) ? $error : 'Start by creating your first tenant.' }} |
|||||