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

🏠 Tenants Management

@csrf
@foreach($tenants as $tenantId => $tenant) @endforeach
ID Nama Email Status Aksi
{{ $tenantId }} {{ $tenant['role'] ?? '-' }} {{ $tenant['email'] ?? '-' }} @if(($tenant['status'] ?? '') === 'active') Active @else Suspended @endif
@csrf
@csrf
@csrf @method('DELETE')
@endsection