You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.6 KiB
PHP
61 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use Midtrans\Config;
|
|
use Midtrans\Snap;
|
|
|
|
class MidtransService
|
|
{
|
|
protected $order;
|
|
|
|
public function __construct($order, $serverKey)
|
|
{
|
|
Config::$serverKey = $serverKey;
|
|
Config::$isProduction = app()->isProduction();
|
|
Config::$isSanitized = true;
|
|
Config::$is3ds = true;
|
|
|
|
$this->order = $order;
|
|
}
|
|
|
|
public function getSnapToken()
|
|
{
|
|
$items = $this->order->items->map(function ($item) {
|
|
return [
|
|
'id' => $item->id,
|
|
'price' => $item->amount,
|
|
'quantity' => $item->quantity,
|
|
'name' => $item->item->order_detail,
|
|
];
|
|
});
|
|
|
|
if ($this->order->total_discount > 0) {
|
|
$items->add([
|
|
'id' => 'Discount',
|
|
'price' => -$this->order->total_discount,
|
|
'quantity' => 1,
|
|
'name' => 'DISCOUNT',
|
|
]);
|
|
}
|
|
|
|
$params = [
|
|
'transaction_details' => [
|
|
'order_id' => $this->order->order_code,
|
|
'gross_amount' => $this->order->total_amount,
|
|
],
|
|
'item_details' => $items->toArray(),
|
|
'customer_details' => [
|
|
'name' => $this->order->customer->name,
|
|
'email' => $this->order->customer->email,
|
|
'phone' => $this->order->customer->phone,
|
|
'address' => $this->order->customer->address,
|
|
],
|
|
];
|
|
|
|
$snapToken = Snap::getSnapToken($params);
|
|
|
|
return $snapToken;
|
|
}
|
|
}
|