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 /
Routes /
Delete
Unzip
Name
Size
Permission
Date
Action
api.php
550
B
-rw-rw-rw-
2025-12-19 06:08
error_log
741
B
-rw-r--r--
2025-12-20 11:43
web.php
2.8
KB
-rw-rw-rw-
2025-12-19 06:08
Save
Rename
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::group(['middleware' => ['web', 'SetSessionData', 'auth', 'language', 'timezone', 'AdminSidebarMenu'], 'prefix' => 'accounting', 'namespace' => '\Modules\Accounting\Http\Controllers'], function() { Route::get('dashboard', 'AccountingController@dashboard'); Route::get('accounts-dropdown', 'AccountingController@AccountsDropdown')->name('accounts-dropdown'); Route::get('get-account-sub-types', 'CoaController@getAccountSubTypes'); Route::get('get-account-details-types', 'CoaController@getAccountDetailsType'); Route::resource('chart-of-accounts', 'CoaController'); Route::get('ledger/{id}', 'CoaController@ledger')->name('accounting.ledger'); Route::get('activate-deactivate/{id}', 'CoaController@activateDeactivate'); Route::get('create-default-accounts', 'CoaController@createDefaultAccounts')->name('accounting.create-default-accounts'); Route::resource('journal-entry', 'JournalEntryController'); Route::get('settings', 'SettingsController@index'); Route::get('reset-data', 'SettingsController@resetData'); Route::resource('account-type', 'AccountTypeController'); Route::resource('transfer', 'TransferController')->except(['show']); Route::resource('budget', 'BudgetController')->except(['show', 'edit', 'update', 'destroy']); Route::get('reports', 'ReportController@index'); Route::get('reports/trial-balance', 'ReportController@trialBalance')->name('accounting.trialBalance'); Route::get('reports/balance-sheet', 'ReportController@balanceSheet')->name('accounting.balanceSheet'); Route::get('reports/account-receivable-ageing-report', 'ReportController@accountReceivableAgeingReport')->name('accounting.account_receivable_ageing_report'); Route::get('reports/account-payable-ageing-report', 'ReportController@accountPayableAgeingReport')->name('accounting.account_payable_ageing_report'); Route::get('transactions', 'TransactionController@index'); Route::get('transactions/map', 'TransactionController@map'); Route::post('transactions/save-map', 'TransactionController@saveMap'); Route::post('save-settings', 'SettingsController@saveSettings'); Route::get('install', 'InstallController@index'); Route::post('install', 'InstallController@install'); Route::get('install/uninstall', 'InstallController@uninstall'); Route::get('install/update', 'InstallController@update'); });