23 lines
491 B
PHP
23 lines
491 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class UpdateHelpdeskCategoryRequest extends FormRequest
|
|
{
|
|
public function authorize(): bool
|
|
{
|
|
return true;
|
|
}
|
|
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'name' => 'required|string|max:255',
|
|
'description' => 'nullable|string',
|
|
'color' => 'nullable|string|regex:/^#[0-9A-Fa-f]{6}$/',
|
|
'is_active' => 'boolean',
|
|
];
|
|
}
|
|
} |