retrofairie/app/Http/Requests/CategoryRequest.php
2025-02-20 21:25:58 -08:00

20 lines
322 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class CategoryRequest extends FormRequest
{
public function rules(): array
{
return [
'name' => ['required'],
];
}
public function authorize(): bool
{
return auth()->check();
}
}