mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-13 06:56:48 +00:00
Laravel Jetstream install
This commit is contained in:
23
resources/views/teams/show.blade.php
Normal file
23
resources/views/teams/show.blade.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<x-app-layout>
|
||||
<x-slot name="header">
|
||||
<h2 class="font-semibold text-xl text-gray-800 leading-tight">
|
||||
{{ __('Team Settings') }}
|
||||
</h2>
|
||||
</x-slot>
|
||||
|
||||
<div>
|
||||
<div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8">
|
||||
@livewire('teams.update-team-name-form', ['team' => $team])
|
||||
|
||||
@livewire('teams.team-member-manager', ['team' => $team])
|
||||
|
||||
@if (Gate::check('delete', $team) && ! $team->personal_team)
|
||||
<x-jet-section-border />
|
||||
|
||||
<div class="mt-10 sm:mt-0">
|
||||
@livewire('teams.delete-team-form', ['team' => $team])
|
||||
</div>
|
||||
@endif
|
||||
</div>
|
||||
</div>
|
||||
</x-app-layout>
|
||||
Reference in New Issue
Block a user