mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
21 lines
445 B
PHP
21 lines
445 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Events\Wiki\Group;
|
|
|
|
use App\Events\Base\Wiki\WikiDeletedEvent;
|
|
use App\Filament\Resources\Wiki\GroupResource as GroupFilament;
|
|
use App\Models\Wiki\Group;
|
|
|
|
/**
|
|
* @extends WikiDeletedEvent<Group>
|
|
*/
|
|
class GroupDeleted extends WikiDeletedEvent
|
|
{
|
|
protected function getFilamentNotificationUrl(): string
|
|
{
|
|
return GroupFilament::getUrl('view', ['record' => $this->getModel()]);
|
|
}
|
|
}
|