Tenants

New Tenant
@if (session('success'))
{{ session('success') }}
@endif @if (session('error'))
{{ session('error') }}
@endif
@php $columns = [ 'company_name' => 'Company', 'status' => 'Status', 'subscription_ends_at' => 'Subscription ends', ]; @endphp @foreach ($columns as $column => $label) @endforeach @forelse ($tenants as $tenant) @empty @endforelse
{{ $label }} @if ($sort === $column) {{ $direction === 'asc' ? '↑' : '↓' }} @endif URL Trial ends Extend
{{ $tenant->company_name }}
{{ $tenant->contact_email }}
@csrf @method('PATCH')
@if ($tenant->isReadOnly()) Read-only @endif
{{ $tenant->subscription_ends_at?->format('d M Y') ?? '—' }} /{{ $tenant->slug }} {{ $tenant->trial_ends_at?->format('d M Y') ?? '—' }}
@csrf
@csrf
Edit
No tenants found.
{{ $tenants->links() }}