2024-10-06 20:49:59 +02:00

28 lines
747 B
PHP

<?php
namespace App\Web\Pages\Settings\NotificationChannels\Actions;
use App\Actions\NotificationChannels\EditChannel;
use App\Models\NotificationChannel;
use Filament\Forms\Components\Checkbox;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Get;
class Edit
{
public static function form(): array
{
return [
TextInput::make('label')
->rules(fn (Get $get) => EditChannel::rules($get())['label']),
Checkbox::make('global')
->label('Is Global (Accessible in all projects)'),
];
}
public static function action(NotificationChannel $channel, array $data): void
{
app(EditChannel::class)->edit($channel, auth()->user(), $data);
}
}