Files
newznab-tmux/app/Http/Requests/ContactContactURequest.php
T
2023-03-30 14:15:45 +00:00

20 lines
373 B
PHP

<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ContactContactURequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return ['g-recaptcha-response' => [
'required',
'captcha',
],];
}
}