change structure of road patrol

This commit is contained in:
2025-06-16 12:35:04 +03:30
parent 6aa073f0ae
commit d16effc80e
9 changed files with 73 additions and 75 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Http\Requests\V3\RoadPatrol;
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}
];
}
}