Files
coolify/resources/views/components/settings/navbar.blade.php
Andras Bacsai 5b517f21be feat(ui): add configurable page widths and searchable controls
Add full-width and centered layout preferences across the app shell and workspaces.
Replace page-size selects with dropdowns and add searchable breadcrumb switching.
2026-08-16 20:54:50 +02:00

21 lines
652 B
PHP

@props([
'title' => 'Settings',
'subtitle' => 'Instance configuration and maintenance',
])
{{-- Same 1180px shell as the workspace. Title hidden only at xl+ (full desktop). --}}
<div class="mx-auto w-full max-w-none">
<x-dashboard.navbar section="settings" :title="$title" :subtitle="$subtitle" :titleOnDesktop="false">
@isset($titleActions)
<x-slot:titleActions>
{{ $titleActions }}
</x-slot:titleActions>
@endisset
@isset($actions)
<x-slot:actions>
{{ $actions }}
</x-slot:actions>
@endisset
</x-dashboard.navbar>
</div>