Linux amd.servercpanel.com 5.14.0-570.25.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jul 9 04:57:09 EDT 2025 x86_64
LiteSpeed
Server IP : 161.248.188.165 & Your IP : 216.73.216.219
Domains :
Cant Read [ /etc/named.conf ]
User : oishifashion
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
oishifashion /
ap.tsgbd.com /
app /
Utils /
Delete
Unzip
Name
Size
Permission
Date
Action
AccountTransactionUtil.php
555
B
-rw-r--r--
2025-12-16 01:59
BusinessUtil.php
14.7
KB
-rw-r--r--
2025-12-16 01:59
CashRegisterUtil.php
22.41
KB
-rw-r--r--
2025-12-16 01:59
ContactUtil.php
10.62
KB
-rw-r--r--
2025-12-16 01:59
InstallUtil.php
6.17
KB
-rw-r--r--
2025-12-16 01:59
ModuleUtil.php
17.68
KB
-rw-r--r--
2025-12-16 01:59
NotificationUtil.php
16.89
KB
-rw-r--r--
2025-12-16 01:59
ProductUtil.php
117.28
KB
-rw-r--r--
2025-12-16 01:59
RestaurantUtil.php
10.32
KB
-rw-r--r--
2025-12-16 01:59
TaxUtil.php
540
B
-rw-r--r--
2025-12-16 01:59
TransactionUtil.php
302.94
KB
-rw-r--r--
2025-12-16 01:59
Util.php
70.57
KB
-rw-r--r--
2025-12-16 01:59
Save
Rename
<?php namespace App\Utils; use App\TaxRate; class AccountTransactionUtil extends Util { /** * Updates tax amount of a tax group * * @param int $group_tax_id * @return void */ public function updateGroupTaxAmount($group_tax_id) { $amount = 0; $tax_rate = TaxRate::where('id', $group_tax_id)->with(['sub_taxes'])->first(); foreach ($tax_rate->sub_taxes as $sub_tax) { $amount += $sub_tax->amount; } $tax_rate->amount = $amount; $tax_rate->save(); } }