Begin by installing this package through Composer. Just run following command to terminal-
composer require baselrabia/paytabs-with-laravel
Once this operation completes the package will automatically be discovered for Laravel 5.6 and above,
- Run this line to publish package files in your app
php artisan vendor:publish --provider="Basel\Paytabs\PaytabsServiceProvider"
- after that fire the migration command
php artisan migrate
- last step add those two fields in your
.env
file ,edit it's value with your own
merchant_email=**************@gmail.com
merchant_secretKey=****************************************************************
And make sure to change your APP_URL
APP_URL=http://localhost:8000
Otherwise, the final step is to add the service provider. Open config/app.php
, and add a new item to the providers array.
'providers' => [
...
Basel\Paytabs\PaytabsServiceProvider::class,
],
- Now add the Aliase
'aliases' => [
...
'Paytabs' => Basel\Paytabs\Facades\PaytabsFacade::class,
],
the package publish 3 files
1- App/Http/Controllers/PaytabsController.php
2- App/Models/PaytabsInvoice.php
3- config/paytabs.php
- you are free to change what you want in the logic of these files {{ Without Deleteing 🧐}}
- the result of success payment will process making a paytabs invoice through the model
App/Models/PaytabsInvoice.php
- the config file have differnt values for response languague, currancy, email and secert_key
http://localhost:8000/paytabs_payment
which call the function ( PaytabsController@index
) by GET Request
http://localhost:8000/paytabs_response
the return response from paytabs which call the function ( PaytabsController@response
) by Post Request
Please use these ‘test card’ details for your demo
Name on Card: John Doe
Card Number: 4000 0000 0000 0051
Expiry: 02/22 CVV: 111
the link for any updates => https://site.paytabs.com/en/checkout-process-demo/
If you think something important is missing or should be different based on your experience, I'd love to hear it! If you have suggestions for improving this package, open an issue with your suggestion.
- Fork the project
- Create a new branch with your changes:
$ git checkout -b my-feature
- Save your changes and create a commit message telling you what you did:
$ git commit -m "feature: My new feature"
- Submit your changes:
$ git push origin my-feature
This repository is under MIT license. You can see the LICENSE file for more details. 😉
This project was developed with ❤️ by @Basel Rabia
If it helped you, give it ⭐, it will help me too 😉