Merge branch 'develop' into 'feature/ActivityStatistic'

Develop

See merge request witelgroup/rms_v2!89
This commit is contained in:
2025-03-09 11:09:46 +00:00
5 changed files with 115 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
<?php
namespace App\Http\Requests\V3\LogList;
use Illuminate\Foundation\Http\FormRequest;
class StoreRequest 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|unique:log_lists,log_unique_code',
'action_type' =>'required|string',
];
}
}

View File

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