File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,9 @@ Google reCAPTCHA v3 is a new mechanism to verify whether the user is bot or not.
17
17
18
18
This package requires the following dependencies:
19
19
20
- - Laravel 5.x
20
+ - Laravel 5.x
21
+
22
+ - If you want to use Validation Class your Laravel version needs to be >= 5.5
21
23
22
24
- php > 5
23
25
@@ -88,8 +90,8 @@ Include Google API in header
88
90
89
91
Include input field
90
92
91
- ``` html
92
- {!! GoogleReCaptchaV3::render('contact_us' ) !!}
93
+ ``` PHP
94
+ {!! GoogleReCaptchaV3::render($actionName, $fieldName ) !!} // $actionName is your google action, $fieldName is optional for input field name
93
95
```
94
96
95
97
Example Usage
@@ -109,6 +111,7 @@ Example Usage
109
111
110
112
Note: all actions should be registered in googlerecaptchav3 config file in 'setting' section.
111
113
114
+ You can also customise your own template under googlerecaptchav3 folder.
112
115
113
116
#### Validation Class (Only support Laravel >= 5.5)
114
117
You can’t perform that action at this time.
0 commit comments