add members table

This commit is contained in:
fsociety
2024-09-29 18:21:09 +02:00
parent e76a60c600
commit c2f0014a8e
31 changed files with 1815 additions and 104 deletions

View File

@@ -0,0 +1,12 @@
<?php
namespace App\Livewire\Forms;
use Livewire\Attributes\Validate;
use Livewire\Form;
class ApplicationForm extends Form
{
#[Validate('required|min:5')]
public $reason = '';
}