mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-22 22:13:59 +00:00
14 lines
376 B
PHP
14 lines
376 B
PHP
<?php
|
|
|
|
namespace App\Classes\Modules\Transactions\Services;
|
|
|
|
|
|
use App\Models\Transaction;
|
|
|
|
class CalculateTransactionRefundServiceCharge
|
|
{
|
|
public function execute(Transaction $transaction, float $service_charge = 0.00){
|
|
return $transaction->service_charge == $service_charge ? $transaction->service_charge : $transaction->service_charge - $service_charge;
|
|
}
|
|
|
|
} |