first commit

This commit is contained in:
2025-09-07 08:50:01 +03:30
commit 3db69ed1c5
132 changed files with 12708 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<?php
namespace $NAMESPACE$;
use Illuminate\Foundation\Http\FormRequest;
class $CLASS$ extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [];
}
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
}