🚀 feat(news): add news management with upload functionality and category selection in the association module

This commit is contained in:
fsociety
2024-10-25 15:02:23 +02:00
parent 421d60e42b
commit 1bf8c66b35
7 changed files with 422 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?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 = '';
}