In this banking script developed with PHP/Laravel want to make a modification. If withdrawals are initiated, Assuming a user has a balance of $500 and wants to withdraw $500, the charges will be deducted from the Balance. What I want is, the charges should be instead added to the balance and not subtracted. For example if a user has $500 and wants to withdraw $500 Assuming the charge is $50, making a total of $550. Since the Total is more than the balance, insufficient funds error message will be displayed. Bottom line is the charge should be added to the balance and not subtracted from the balance.