coolify/resources/views/components/team/navbar.blade.php

44 lines
1.9 KiB
PHP
Raw Normal View History

2023-06-02 12:34:45 +02:00
<div class="pb-6">
<h1>Team</h1>
2023-06-16 15:01:58 +02:00
<nav class="flex pt-2 pb-10">
2023-06-07 21:44:16 +02:00
<ol class="inline-flex items-center">
<li>
<div class="flex items-center">
2023-06-16 15:01:58 +02:00
<span>Currently active team: {{ session('currentTeam.name') }}</span>
2023-06-07 21:44:16 +02:00
</div>
</li>
2023-06-16 15:12:25 +02:00
@if (session('currentTeam.description'))
<li class="inline-flex items-center">
<svg aria-hidden="true" class="w-4 h-4 mx-1 font-bold text-warning" fill="currentColor"
viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
<path fill-rule="evenodd"
d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z"
clip-rule="evenodd"></path>
</svg>
<span class="truncate">{{ Str::limit(session('currentTeam.description'), 52) }}</span>
</li>
@endif
2023-06-07 21:44:16 +02:00
</ol>
</nav>
<nav class="navbar-main">
2023-07-14 11:27:08 +02:00
<a class="{{ request()->routeIs('team.show') ? 'text-white' : '' }}" href="{{ route('team.show') }}">
<button>General</button>
</a>
<a class="{{ request()->routeIs('team.members') ? 'text-white' : '' }}" href="{{ route('team.members') }}">
<button>Members</button>
</a>
2023-08-07 15:31:42 +02:00
<a class="{{ request()->routeIs('team.storages.all') ? 'text-white' : '' }}"
href="{{ route('team.storages.all') }}">
<button>S3 Storages</button>
</a>
2023-07-14 11:27:08 +02:00
<a class="{{ request()->routeIs('team.notifications') ? 'text-white' : '' }}"
href="{{ route('team.notifications') }}">
<button>Notifications</button>
</a>
<div class="flex-1"></div>
<div class="-mt-9">
2023-07-13 22:03:27 +02:00
<livewire:switch-team />
2023-07-14 11:27:08 +02:00
</div>
2023-06-02 12:34:45 +02:00
</nav>
</div>