Файл: app/Http/Requests/ContactMailRequest.php
Строк: 24
<?php
namespace AppHttpRequests;
use IlluminateFoundationHttpFormRequest;
class ContactMailRequest extends FormRequest
{
    /**
     * Determine if the user is authorized to make this request.
     *
     * @return bool
     */
    public function authorize()
    {
        return true;
    }
    /**
     * Get the validation rules that apply to the request.
     *
     * @return array
     */
    public function rules()
    {
        return [
            'subject' => ['required', 'string', 'max:64'],
            'email' => ['required', 'string', 'email', 'max:255'],
            'message' => ['required', 'string', 'max:10000'],
            'g-recaptcha-response' => [(config('settings.captcha_contact') ? 'required' : 'sometimes'), 'captcha']
        ];
    }
}