Mercurial > packages > magicforger
view src/Generator/Requests/stubs/request.stub @ 24:31109c61ce02 codex
Refactor RelationshipNavigator formatting and implement belongsTo, hasMany, belongsToMany injection in ModelGenerator
| author | Luka Sitas <sitas.luka.97@gmail.com> |
|---|---|
| date | Tue, 22 Apr 2025 21:37:44 -0400 |
| parents | 3426c7e91c24 |
| children |
line wrap: on
line source
<?php namespace {{ namespace }}; use Illuminate\Foundation\Http\FormRequest; class {{ class }} 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|string> */ public function rules(): array { return [ // {{ valuesForValidation }} ]; } }
