{{ __('Platform') }}
{{ __('Workspaces') }} {{ __('Every customer workspace on the platform. Read-only view — switch into one via the account switcher in the sidebar.') }}
@if ($this->accounts->isEmpty())
{{ __('No workspaces yet.') }}
@else
@foreach ($this->accounts as $account) @endforeach
{{ __('Name') }} {{ __('Slug') }} {{ __('Users') }} {{ __('Created') }}
{{ $account->name }} {{ $account->slug }} {{ $account->users_count ?? 0 }} {{ $account->created_at?->diffForHumans() }}
@endif