dspblack You go to app/Http/Controllers/DeliveryController.php
You search for the term "DELIVERYCHARGE".
Now, under each term you add: + 20
For example
if (config('appSettings.deliveryGuyCommissionFrom') == 'DELIVERYCHARGE') {
$commission = $deliveryGuyCommissionRate / 100 * $order->delivery_charge;
}
Will become
if (config('appSettings.deliveryGuyCommissionFrom') == 'DELIVERYCHARGE') {
$commission = $deliveryGuyCommissionRate / 100 * $order->delivery_charge + 20;
}
You must do this operation exactly 9 times. 😉
PS: If your delivery person gets a commission on the total order, you have to do this operation by searching for "FULLORDER"