2023-06-02 10:34:45 +00:00
|
|
|
<div class="pb-6">
|
|
|
|
<h1>Team</h1>
|
2023-06-16 10:35:40 +00:00
|
|
|
<nav class="flex pt-2 pb-10 ">
|
2023-06-07 19:44:16 +00:00
|
|
|
<ol class="inline-flex items-center">
|
|
|
|
<li class="inline-flex items-center">
|
|
|
|
Currently Active Team
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<div class="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>
|
2023-06-07 19:46:32 +00:00
|
|
|
<span class="font-bold text-warning">{{ session('currentTeam.name') }}</span>
|
2023-06-07 19:44:16 +00:00
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
</ol>
|
|
|
|
</nav>
|
2023-06-12 10:00:01 +00:00
|
|
|
<nav class="flex items-end gap-4 py-2 border-b-2 border-solid border-coolgray-200">
|
2023-06-02 10:34:45 +00:00
|
|
|
<a class="{{ request()->routeIs('team.show') ? 'text-white' : '' }}" href="{{ route('team.show') }}">
|
|
|
|
<button>Members</button>
|
|
|
|
</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>
|