coolify/resources/views/team.blade.php

13 lines
478 B
PHP
Raw Normal View History

2023-05-16 12:38:11 +00:00
<x-layout>
2023-06-01 10:15:33 +00:00
<h1>Team</h1>
<p>Current Team: {{ session('currentTeam.name') }}</p>
@if (auth()->user()->otherTeams()->count() > 0)
<livewire:switch-team />
2023-06-01 10:15:33 +00:00
@endif
<h2>Notifications</h2>
<livewire:notifications.test :model="session('currentTeam')" />
<livewire:notifications.email-settings :model="session('currentTeam')" />
<livewire:notifications.discord-settings :model="session('currentTeam')" />
<div class="h-12"></div>
2023-05-16 12:38:11 +00:00
</x-layout>