klongchu / omise
this is a packge of omise
Installs: 46
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:package
Requires
- php: ^8.0
- guzzlehttp/guzzle: ~7.0
README
Docs
เริ่มต้นใช้งานของ omise
ตัวอย่างโค้ด
Support
Let's Start
โหลดผ่าน composer
composer require klongchu/omise
นำไฟล์ config มาไว้ที่โปรเจค
php artisan vendor:publish --tag=config
กำหนดค่าที่ไฟล์ .env
OMISE_PUBLIC_KEY=
OMISE_SECRET_KEY=
สร้าง Source อ่านเพิ่มเติม
$response = OmiseSource::create([
'amount' => 12345,
'currency' => 'THB',
'type' => 'truemoney',
'phone_number' => '0123456789',
]);
dd($response);
สร้าง Charge อ่านเพิ่มเติม
$response = OmiseCharge::create([
'amount' => 12345,
'currency' => 'THB',
'return_uri' => 'http://example.com/orders/345678/complete',
'source' => 'src_*****',
]);
dd($response);