@extends('layouts.app') @section('title', __('ui.tenants')) @section('content')

{{ __('ui.tenants') }}

{{ __('ui.create') }}
@foreach($tenants as $tenant) @endforeach
{{ __('ui.name') }} {{ __('ui.email') }} {{ __('ui.status') }} {{ __('ui.plans') }}
{{ $tenant->name }} {{ $tenant->email }} {{ $tenant->status }} {{ $tenant->activeSubscription?->plan?->name ?? '—' }} {{ __('ui.edit') }}
{{ $tenants->links() }}
@endsection