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
@@ -119,7 +119,7 @@ Use `Payable` trait in your order model or any other model like user which will
119
119
120
120
You can impalement getAmount() method to return `Iranian Rail` amount of your model.
121
121
```php
122
-
use Tartan\Larapay\Payable;
122
+
use PhpMonsters\Larapay\Payable;
123
123
124
124
class Order extends Model
125
125
{
@@ -138,7 +138,7 @@ Now you just have 3 steps to complete your payment:
138
138
139
139
In your bank controller create a transaction for your order and generate bank for to transfer user to payment gateway.
140
140
```php
141
-
use Tartan\Larapay\Models\Enum\Bank;
141
+
use PhpMonsters\Larapay\Models\Enum\Bank;
142
142
143
143
class BankController extends Controller
144
144
{
@@ -192,7 +192,7 @@ After payment, bank call you callback route
192
192
193
193
```php
194
194
use Illuminate\Http\Request;
195
-
use Tartan\Larapay\Facades\Larapay;
195
+
use PhpMonsters\Larapay\Facades\Larapay;
196
196
197
197
class YourController extends Controller
198
198
{
@@ -273,7 +273,7 @@ Status in boolean:
273
273
You can use `LarapayTransaction` model to find your transaction:
274
274
275
275
```php
276
-
use Tartan\Larapay\Models\LarapayTransaction;
276
+
use PhpMonsters\Larapay\Models\LarapayTransaction;
277
277
278
278
public function getTransaction($transactionId){
279
279
@@ -296,11 +296,11 @@ If you discover any security related issues, please email [email protected] or m
296
296
297
297
## Team
298
298
299
-
This component is developed by the following person(s) and a bunch of [awesome contributors](https://github.com/iamtartan/laravel-online-payment/graphs/contributors).
299
+
This component is developed by the following person(s) and a bunch of [awesome contributors](https://github.com/php-monsters/laravel-online-payment/graphs/contributors).
0 commit comments