https://github.com/laravel-payhere/laravel-payhere
PayHere for Laravel: A plugin for Sri Lanka's #1 Payment Gateway
https://github.com/laravel-payhere/laravel-payhere
laravel payherelk php plugin
Last synced: 5 months ago
JSON representation
PayHere for Laravel: A plugin for Sri Lanka's #1 Payment Gateway
- Host: GitHub
- URL: https://github.com/laravel-payhere/laravel-payhere
- Owner: laravel-payhere
- License: mit
- Created: 2024-01-14T06:06:02.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2026-01-29T03:53:56.000Z (5 months ago)
- Last Synced: 2026-01-29T20:08:33.823Z (5 months ago)
- Topics: laravel, payherelk, php, plugin
- Language: PHP
- Homepage: https://dasun.dev/docs/laravel-payhere
- Size: 2.39 MB
- Stars: 18
- Watchers: 1
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
Awesome Lists containing this project
README
## Introduction
Easily and securely integrate [PayHere](https://payhere.lk) into your Laravel application.
```php
// A super simple example to show how easy it is to integrate PayHere!
use PayHere\PayHere;
class CheckoutController extends Controller
{
public function __invoke()
{
return PayHere::builder()
->title('iPhone 16 Pro')
->amount(329900)
->checkout();
}
}
```
## Official Documentation
You can find the documentation [here](https://www.dasun.dev/docs/laravel-payhere).
## Changelog
Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.
## Security Vulnerabilities
Please review [our security policy](SECURITY.md) on how to report security vulnerabilities.
## License
The Laravel PayHere is open-sourced software licensed under the [MIT license](LICENSE.md).