{{-- Its own GET form so it can't submit any of the modals on this
page. `tab` rides along because the tab links are fragments and
never touch the query string. --}}
{{-- Workspace is a per-company add-on; without it there is nothing to sync. --}}
@if ($workspaceEnabled)
@endif
@endsection
@section('content')
{{-- Workspace and native accounts are separate tabs (Obvizio's users pattern):
they're managed differently, so the old "Source" column is gone — the
active tab already says which kind you're looking at. --}}
@if ($showWorkspaceTab && ! $workspaceEnabled)
{{-- One wrapper child: Tabler's .alert is a flex row, so loose inline
nodes would each become their own column. --}}
The Workspace add-on is off for {{ $activeCompany?->name }}, but
{{ $workspaceUsers->count() }} mirrored {{ \Illuminate\Support\Str::plural('account', $workspaceUsers->count()) }}
{{ $workspaceUsers->count() === 1 ? 'is' : 'are' }} still here. They behave as native
accounts (single Default Task, no task feed) until the add-on is turned back on.
@include('admin.partials.modal-form-ux')
{{-- ── Tasks diagnostic ──────────────────────────────────────────────────────
Side-by-side: what this employee's desktop was last handed vs what the
workspace has right now. Read-only. --}}
Tasks
Loading…
{{-- Keep the chosen tab in the URL so a reload / back-button (and the
redirect after create-edit-delete) lands on the same list. --}}
@endsection
@push('styles')
@endpush
@push('scripts')
@endpush