@extends('layouts.app') @section('title', __('Tenants')) @section('page-title', 'Tenants') @section('page-subtitle', 'Manage every workspace on the platform') @section('content') @include('super-admin._nav')
New tenant
@forelse($tenants as $tenant) @empty @endforelse
Name Slug Plan Users Status Actions
{{ $tenant->name }} {{ $tenant->slug }} {{ $tenant->plan }} {{ $tenant->users_count }} {{ $tenant->status }}
@csrf
@csrf @method('DELETE')
No tenants yet.
{{ $tenants->links() }}
@endsection