view src/Generator/Requests/stubs/request.stub @ 30:21439512ba69 codex

Fixing issue with conflict of input variables on the request generator.
author Luka Sitas <sitas.luka.97@gmail.com>
date Wed, 18 Jun 2025 09:04:59 -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 }} 
        ];
    }
}