24 lines
999 B
PHP
24 lines
999 B
PHP
<div>
|
|
<form wire:submit.prevent='submit' class="flex flex-col">
|
|
<div class="flex items-center gap-2">
|
|
<h2>Discord</h2>
|
|
<x-forms.button type="submit">
|
|
Save
|
|
</x-forms.button>
|
|
@if ($model->extra_attributes->discord_active)
|
|
<x-forms.button class="text-white normal-case btn btn-xs no-animation btn-primary"
|
|
wire:click="sendTestNotification">
|
|
Send Test Notifications
|
|
</x-forms.button>
|
|
@endif
|
|
</div>
|
|
<div class="w-48">
|
|
<x-forms.checkbox instantSave id="model.extra_attributes.discord_active" label="Notification Enabled" />
|
|
</div>
|
|
<x-forms.input type="string"
|
|
helper="Generate a webhook in Discord.<br>Example: https://discord.com/api/webhooks/...." required
|
|
id="model.extra_attributes.discord_webhook" label="Webhook" />
|
|
</form>
|
|
<x-notification-subscription />
|
|
</div>
|