mirror of
https://github.com/HolgerHatGarKeineNode/einundzwanzig-nostr.git
synced 2025-12-13 05:26:47 +00:00
15 lines
245 B
PHP
15 lines
245 B
PHP
<?php
|
|
|
|
namespace App\Livewire\Forms;
|
|
|
|
use Livewire\Attributes\Validate;
|
|
use Livewire\Form;
|
|
|
|
class ApplicationForm extends Form
|
|
{
|
|
#[Validate('nullable|string')]
|
|
public $reason = '';
|
|
#[Validate('boolean')]
|
|
public $check = false;
|
|
}
|