create controller

This commit is contained in:
2025-05-18 18:12:15 +03:30
parent f756b9adbe
commit d330908bd3
4 changed files with 169 additions and 36 deletions

View File

@@ -0,0 +1,28 @@
<?php
namespace App\Http\Requests\V3\Mission;
use Illuminate\Foundation\Http\FormRequest;
class UpdateRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return false;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
*/
public function rules(): array
{
return [
//
];
}
}