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

35 lines
1.6 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>
2023-06-12 12:00:01 +02:00
<nav class="flex items-end gap-4 py-2 border-b-2 border-solid border-coolgray-200">
2023-06-02 12:34:45 +02:00
<a class="{{ request()->routeIs('team.show') ? 'text-white' : '' }}" href="{{ route('team.show') }}">
2023-06-16 15:01:58 +02:00
<button>General</button>
2023-06-02 12:34:45 +02:00
</a>
<a class="{{ request()->routeIs('team.notifications') ? 'text-white' : '' }}"
href="{{ route('team.notifications') }}">
<button>Notifications</button>
</a>
<div class="flex-1"></div>
<livewire:switch-team />
</nav>
</div>