Skip to content

Instantly share code, notes, and snippets.

@mitrallex
Created August 6, 2018 12:10
Show Gist options
  • Save mitrallex/eeb0c0d3eadac31dc5437331c45412f6 to your computer and use it in GitHub Desktop.
Save mitrallex/eeb0c0d3eadac31dc5437331c45412f6 to your computer and use it in GitHub Desktop.
laravel-google-recaptcha
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use App\Rules\ValidRecaptcha;
class FeedbackRequest 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 [
'name' => 'required',
'email' => 'required|email',
'message' => 'required',
'g-recaptcha-response' => ['required', new ValidRecaptcha]
];
}
public function messages()
{
return [
'g-recaptcha-response.required' => 'Please ensure that you are a human!'
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment