remove: unused Livewire component NotificationForm (0 references in codebase)

This commit is contained in:
HolgerHatGarKeineNode
2026-01-23 01:11:35 +01:00
parent 91ea859c72
commit 29d83e9af7

View File

@@ -1,18 +0,0 @@
<?php
namespace App\Livewire\Forms;
use Livewire\Attributes\Validate;
use Livewire\Form;
class NotificationForm extends Form
{
#[Validate('required|string')]
public $name = '';
#[Validate('required|numeric')]
public $category = '';
#[Validate('nullable|string|min:5')]
public $description = '';
}