60 lines
1.5 KiB
PHP
60 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\KPI;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Carbon\Carbon;
|
|
|
|
class UpdateKpiTargetRequest 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 [
|
|
'user_id' => 'required|exists:users,id',
|
|
'target_value' => 'required|integer|min:1',
|
|
'description' => 'nullable|string|max:1000',
|
|
'is_active' => 'boolean'
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Get custom messages for validator errors.
|
|
*/
|
|
public function messages(): array
|
|
{
|
|
return [
|
|
'user_id.required' => 'Mekanik harus dipilih',
|
|
'user_id.exists' => 'Mekanik yang dipilih tidak valid',
|
|
'target_value.required' => 'Target nilai harus diisi',
|
|
'target_value.integer' => 'Target nilai harus berupa angka',
|
|
'target_value.min' => 'Target nilai minimal 1',
|
|
'description.max' => 'Deskripsi maksimal 1000 karakter',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Prepare the data for validation.
|
|
*/
|
|
protected function prepareForValidation(): void
|
|
{
|
|
$this->merge([
|
|
'is_active' => $this->boolean('is_active', true)
|
|
]);
|
|
}
|
|
|
|
|
|
}
|