Files
backend/app/Http/Requests/V3/LogList/UpdateRequest.php
2025-03-09 14:29:36 +03:30

32 lines
805 B
PHP

<?php
namespace App\Http\Requests\V3\LogList;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class UpdateRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
return [
'description' => 'required|string',
'log_unique_code' => ['required', 'numeric', Rule::unique('log_lists', 'log_unique_code')->ignore($this->logList->id)],
'action_type' => 'required|string',
];
}
}