view src/Generator/Requests/stubs/request.stub @ 17:f21baea33d0b main-dev

Added hgignore
author Luka Sitas <sitas.luka.97@gmail.com>
date Wed, 26 Feb 2025 19:12:23 -0500
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 }} 
        ];
    }
}