tuzlufatih / laravel-pos
Laravel 9 Pos Package
dev-master
2022-08-14 21:14 UTC
Requires
- php: ^8.1.4
- illuminate/config: ~5.7|~5.8|^6.0|^7.0|^8.0|^9.0
- mews/pos: ^0.4.3
Requires (Dev)
- orchestra/testbench: ^6.20.0
- phpunit/phpunit: ^8
This package is auto-updated.
Last update: 2024-10-15 01:48:59 UTC
README
Temel Paket
Minimum Gereksinimler
- PHP >= 8.1
- ext-dom
- ext-json
- ext-openssl
- ext-SimpleXML
Kurulum
composer require tuzlufatih/laravel-pos
config/app.php
dosyasındaki providers
kısmına aşağıdaki kodu ekleyin:
'providers' => [ // ... Mews\LaravelPos\LaravelPosServiceProvider::class, ]
config/app.php
dosyasındaki aliases
kısmına aşağıdaki kodu ekleyin:
'aliases' => [ // ... 'LaravelPos' => Mews\LaravelPos\Facades\LaravelPos::class, ]
Konsolda, proje ana dizinindeyken aşağıdaki komut girilir:
php artisan vendor:publish --provider="tuzlufatih\LaravelPos\LaravelPosServiceProvider"
Kullanım
$pos = \Mews\LaravelPos\Facades\LaravelPos::instance(); $pos->account([ 'bank' => 'garanti', 'model' => 'regular', 'client_id' => 'XXXXX', 'username' => 'XXXXX', 'password' => 'XXXXX', 'env' => 'test', 'terminal_id' => 'xxx', ]); $order = [ 'id' => 'unique-order-id-' . Str::random(16), 'name' => 'John Doe', // optional 'email' => 'mail@customer.com', // optional 'user_id' => '12', // optional 'amount' => (double) 100, 'installment' => '0', 'currency' => 'TRY', 'ip' => request()->ip(), 'transaction' => 'pay', // pay => Auth, pre PreAuth ]; $card = [ 'number' => 'XXXXXXXXXXXXXXXX', 'month' => 'XX', 'year' => 'XX', 'cvv' => 'XXX', ]; $pos->prepare($order); $payment = $pos->payment($card); dd($payment->response);
License
MIT