create fms service

This commit is contained in:
2024-12-24 11:55:20 +03:30
parent 8155cd9796
commit dd616551af
8 changed files with 620 additions and 1 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Http\Requests\V3\RoadPatrolProject;
use Illuminate\Foundation\Http\FormRequest;
class DeleteRequest 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 [
'type' => 'required|in:1,2' // {1 = > partial , 2 => complete}
];
}
}