mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-14 06:36:46 +00:00
19 lines
326 B
PHP
19 lines
326 B
PHP
<?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 = '';
|
|
}
|