update
This commit is contained in:
@@ -2,7 +2,8 @@
|
||||
<h1>Team</h1>
|
||||
<div class="text-sm breadcrumbs pb-11">
|
||||
<ul>
|
||||
<li>{{ session('currentTeam.name') }}</li>
|
||||
<li>Currently Active Team</li>
|
||||
<li class="font-bold">{{ session('currentTeam.name') }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
<nav class="flex items-center gap-4 py-2 border-b-2 border-solid border-coolgray-200">
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
Use the magic
|
||||
<br><br>Use the magic
|
||||
bar (press <span class="kbd-custom">/</span>) to create a new one.
|
||||
|
||||
@@ -5,6 +5,10 @@
|
||||
<x-forms.button type="submit">
|
||||
Save
|
||||
</x-forms.button>
|
||||
<x-forms.button class="text-white normal-case btn btn-xs no-animation btn-primary"
|
||||
wire:click="sendTestNotification">
|
||||
Send Test Notifications
|
||||
</x-forms.button>
|
||||
</div>
|
||||
<div class="flex flex-col gap-2 xl:flex-row w-96">
|
||||
<x-forms.checkbox instantSave id="model.extra_attributes.discord_active" label="Notification Enabled" />
|
||||
|
||||
@@ -5,6 +5,15 @@
|
||||
<x-forms.button type="submit">
|
||||
Save
|
||||
</x-forms.button>
|
||||
@if (auth()->user()->isAdmin())
|
||||
<x-forms.button wire:click='copySMTP'>
|
||||
Copy from Instance Settings
|
||||
</x-forms.button>
|
||||
@endif
|
||||
<x-forms.button class="text-white normal-case btn btn-xs no-animation btn-primary"
|
||||
wire:click="sendTestNotification">
|
||||
Send Test Notifications
|
||||
</x-forms.button>
|
||||
</div>
|
||||
<div class="flex flex-col w-96">
|
||||
<x-forms.checkbox instantSave id="model.extra_attributes.smtp_active" label="Notification Enabled" />
|
||||
|
||||
@@ -1,6 +0,0 @@
|
||||
<div class="flex items-center gap-2">
|
||||
<h2>Notifications</h2>
|
||||
<x-forms.button class="text-white normal-case btn btn-xs no-animation btn-primary" wire:click="sendTestNotification">
|
||||
Send Test Notifications
|
||||
</x-forms.button>
|
||||
</div>
|
||||
@@ -16,10 +16,6 @@
|
||||
No project found.
|
||||
<x-use-magic-bar />
|
||||
</div>
|
||||
<div>
|
||||
If you do not have a project yet, just create a resource (application, database, etc.) first, it will
|
||||
create a new project for you automatically.
|
||||
</div>
|
||||
@endforelse
|
||||
</div>
|
||||
</x-layout>
|
||||
|
||||
@@ -19,10 +19,9 @@
|
||||
</div>
|
||||
</a>
|
||||
@empty
|
||||
<div class="flex flex-col">
|
||||
<div>Without a server, you won't be able to do much.</div>
|
||||
<div>Let's <a class="text-lg underline text-warning" href="{{ route('server.create') }}">create</a> your
|
||||
first one.</div>
|
||||
<div>
|
||||
<div>No servers found. Without a server, you won't be able to do much.</div>
|
||||
<x-use-magic-bar />
|
||||
</div>
|
||||
@endforelse
|
||||
</div>
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<x-layout>
|
||||
<x-team.navbar :team="session('currentTeam')" />
|
||||
{{-- <livewire:notifications.test :model="session('currentTeam')" /> --}}
|
||||
<div x-data="{ activeTab: window.location.hash ? window.location.hash.substring(1) : 'email' }" class="flex h-full">
|
||||
<div class="flex flex-col gap-4 min-w-fit">
|
||||
<a :class="activeTab === 'email' && 'text-white'"
|
||||
|
||||
Reference in New Issue
Block a user