mirror of
https://github.com/tiennm99/coolify.git
synced 2026-08-20 14:23:44 +00:00
21 lines
668 B
PHP
21 lines
668 B
PHP
@props([
|
|
'title' => 'Keys & Tokens',
|
|
'subtitle' => 'SSH keys, cloud tokens, and API access',
|
|
// Family index/list views hide the H1 only at xl+ (topbar + tabs cover context).
|
|
// Detail views pass true so the resource name stays visible.
|
|
'titleOnDesktop' => false,
|
|
])
|
|
|
|
<x-dashboard.navbar section="security" :title="$title" :subtitle="$subtitle" :titleOnDesktop="$titleOnDesktop">
|
|
@isset($titleActions)
|
|
<x-slot:titleActions>
|
|
{{ $titleActions }}
|
|
</x-slot:titleActions>
|
|
@endisset
|
|
@isset($actions)
|
|
<x-slot:actions>
|
|
{{ $actions }}
|
|
</x-slot:actions>
|
|
@endisset
|
|
</x-dashboard.navbar>
|