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 /
Modules /
Entities /
Delete
Unzip
Name
Size
Permission
Date
Action
.gitkeep
0
B
-rw-rw-rw-
2025-12-19 06:08
AccountingAccTransMapping.php
178
B
-rw-rw-rw-
2025-12-19 06:08
AccountingAccount.php
2.4
KB
-rw-rw-rw-
2025-12-19 06:08
AccountingAccountType.php
1.47
KB
-rw-rw-rw-
2025-12-19 06:08
AccountingAccountsTransaction.php
1.97
KB
-rw-rw-rw-
2025-12-19 06:08
AccountingBudget.php
265
B
-rw-rw-rw-
2025-12-19 06:08
error_log
5.56
KB
-rw-r--r--
2025-12-20 13:10
Save
Rename
<?php namespace Modules\Accounting\Entities; use Illuminate\Database\Eloquent\Model; class AccountingAccountType extends Model { /** * The attributes that aren't mass assignable. * * @var array */ protected $guarded = ['id']; public function getAccountTypeNameAttribute() { $name = !empty($this->business_id) ? $this->name : __('accounting::lang.'. $this->name); return $name; } public function getAccountTypeDescriptionAttribute() { if(empty($this->descriptiion)) { return ''; } $descriptiion = !empty($this->business_id) ? $this->descriptiion : __('accounting::lang.'. $this->descriptiion); return $descriptiion; } /** * Get the parent of the type */ public function parent() { return $this->belongsTo('Modules\Accounting\Entities\AccountingAccountType', 'parent_id', 'id'); } public static function accounting_primary_type(){ $accounting_primary_type = [ 'asset' => ['label' => __('accounting::lang.asset')], 'expenses' => ['label' => __('accounting::lang.expenses')], 'income' => ['label' => __('accounting::lang.income')], 'equity' => ['label' => __('accounting::lang.equity')], 'liability' => ['label' => __('accounting::lang.liability')] ]; return $accounting_primary_type; } }