This commit is contained in:
Saeed Vaziry
2023-07-02 12:47:50 +02:00
commit 5c72f12490
825 changed files with 41659 additions and 0 deletions

View File

@ -0,0 +1,34 @@
<x-app-layout>
@if(isset($pageTitle))
<x-slot name="pageTitle">{{ $pageTitle }}</x-slot>
@endif
<x-container class="flex">
<div class="hidden lg:block lg:flex-none w-64">
<x-sidebar-link :href="route('profile')" :active="request()->routeIs('profile')">
<x-heroicon-o-user class="w-6 h-6 mr-1" />
{{ __('Profile') }}
</x-sidebar-link>
<x-sidebar-link :href="route('server-providers')" :active="request()->routeIs('server-providers')">
<x-heroicon-o-server-stack class="w-6 h-6 mr-1" />
{{ __('Server Providers') }}
</x-sidebar-link>
<x-sidebar-link :href="route('source-controls')" :active="request()->routeIs('source-controls')">
<x-heroicon-o-code-bracket class="w-6 h-6 mr-1" />
{{ __('Source Controls') }}
</x-sidebar-link>
<x-sidebar-link :href="route('notification-channels')" :active="request()->routeIs('notification-channels')">
<x-heroicon-o-bell class="w-6 h-6 mr-1" />
{{ __('Notification Channels') }}
</x-sidebar-link>
<x-sidebar-link :href="route('ssh-keys')" :active="request()->routeIs('ssh-keys')">
<x-heroicon-o-key class="w-6 h-6 mr-1" />
{{ __('SSH Keys') }}
</x-sidebar-link>
</div>
<div class="w-full">
{{ $slot }}
</div>
</x-container>
</x-app-layout>