You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Greate! You can start to use **Laravel Jotform**Package.
29
+
Greate! You can start to use **Jotform API**in your Laravel app.
22
30
23
31
## Usage
24
-
1- You can use `jotform()` helper function in order to access Jotform API:
32
+
You can use Jotform API in two different ways with this package.
33
+
34
+
1- Use `jotform()` helper function in order to access Jotform API:
25
35
```php
26
36
<?php
27
37
28
38
$myForms = jotform()->getForms();
29
39
```
30
-
2- You can use Facade:
40
+
2- Use Facade:
31
41
```php
32
42
<?php
33
43
34
44
use Jotform\Facade\Jotform;
35
45
36
46
$myForms = Jotform::getForms();
37
47
```
38
-
You can find **all methods** that will be able to use with this package by using [this documentation](https://github.com/jotform/jotform-api-php).
48
+
**Important:**You can find **all methods** that will be able to use with this package by using [this documentation](https://github.com/jotform/jotform-api-php). (The official PHP package of Jotform)
39
49
40
50
## Config
41
51
You can change the package configs via `config/jotform.php` file or directly using `.env` file variables.
0 commit comments