Nimika Try this... I have not tested it, but it should work
Go to app/Http/Controllers/DeliveryController.php
Add few lines on line no 761, just below //Update Delivery Guy Earnings
if ($order->payment_mode == 'COD') {
if ($deliveryUser->user) {
$deliveryUser->user->withdraw($order->payable, ['description' => 'Order Amount deducted for' . $order->unique_order_id]);
}
You have to make sure there's balance in Delivery guy's balance previously. Your delivery guy can send you money in advance manually and you can Add Money in wallet first.
Let me know if this works.