Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 75f2cee

Browse files
committedFeb 21, 2021
Update README.md - add usage
1 parent 9c84893 commit 75f2cee

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed
 

‎README.md

+42
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,48 @@ class MyController extends Controller
5858
}
5959
```
6060

61+
#### Get Bank
62+
63+
```php
64+
Toyyibpay::getBanks();
65+
```
66+
67+
#### Get Bank FPX
68+
69+
```php
70+
Toyyibpay::getBanksFPX();
71+
```
72+
73+
#### Get Package
74+
75+
```php
76+
Toyyibpay::getPackages();
77+
```
78+
79+
#### Create Category
80+
81+
```php
82+
Toyyibpay::createCategory($name, $description);
83+
```
84+
85+
#### Get Category
86+
87+
```php
88+
Toyyibpay::getCategory($code);
89+
```
90+
91+
#### Create Bill
92+
93+
```php
94+
Toyyibpay::createBill($code, $bill_object);
95+
```
96+
97+
#### Get Bill Payment Link
98+
99+
```php
100+
Toyyibpay::billPaymentLink($bill_code);
101+
```
102+
61103
### Opening an Issue
62104
Before opening an issue there are a couple of considerations:
63105
* You are all cute and geek!

0 commit comments

Comments
 (0)
Please sign in to comment.