Linux server1.signalhg.team 4.18.0-553.134.1.el8_10.x86_64 #1 SMP Tue Jun 16 16:05:57 EDT 2026 x86_64
Apache
: 209.74.80.147 | : 216.73.217.142
150 Domain
8.1.34
signgwph
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
signgwph /
signaltechdemo1.com /
routes /
[ HOME SHELL ]
Name
Size
Permission
Action
api.php
25.33
KB
-rw-r--r--
channels.php
558
B
-rw-r--r--
console.php
592
B
-rw-r--r--
goat1.php
143.87
KB
-rw-r--r--
m1.php
3.16
KB
-rw-r--r--
tenant.php
845
B
-rw-r--r--
upgrade.php
825
B
-rw-r--r--
web.php
604
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : m1.php
<?php use App\Http\Controllers\API\M1\AuthController; use App\Http\Controllers\API\M1\BrandAPIController; use App\Http\Controllers\API\M1\CustomerAPIController; use App\Http\Controllers\API\M1\DashboardAPIController; use App\Http\Controllers\API\M1\HoldAPIController; use App\Http\Controllers\API\M1\ProductAPIController; use App\Http\Controllers\API\M1\ProductCategoryAPIController; use App\Http\Controllers\API\M1\ReportAPIController; use App\Http\Controllers\API\M1\SaleAPIController; use App\Http\Controllers\API\M1\UserAPIController; use App\Http\Controllers\API\M1\WarehouseAPIController; use Illuminate\Support\Facades\Route; Route::prefix('m1')->as('m1.')->group(function () { // login Route::post('login', [AuthController::class, 'login']); Route::post('/forgot-password', [AuthController::class, 'sendPasswordResetLinkEmail'])->middleware('throttle:5,1'); Route::post('/reset-password', [AuthController::class, 'resetPassword']); Route::middleware('auth:sanctum')->group(function () { // dashboard Route::get('dashboard', [DashboardAPIController::class, 'index']); // profile Route::get('edit-profile', [UserAPIController::class, 'editProfile']); Route::post('update-profile', [UserAPIController::class, 'updateProfile']); Route::post('change-password', [UserAPIController::class, 'changePassword']); // Language Change Route::get('languages', [UserAPIController::class, 'languages']); Route::post('change-language', [UserAPIController::class, 'updateLanguage']); // charts Route::get('week-selling-purchases', [DashboardAPIController::class, 'getWeekSalePurchases']); Route::get('top-selling-products', [DashboardAPIController::class, 'getTopSellingProducts']); Route::get('yearly-top-selling', [DashboardAPIController::class, 'getYearlyTopSelling']); Route::get('top-customers', [DashboardAPIController::class, 'getTopCustomer']); Route::get('recent-sales', [DashboardAPIController::class, 'getRecentSales']); Route::get('stock-alerts', [DashboardAPIController::class, 'stockAlerts']); // POS Route::resource('customers', CustomerAPIController::class); Route::get('warehouses', [WarehouseAPIController::class, 'index']); Route::get('product-categories', [ProductCategoryAPIController::class, 'index']); Route::get('brands', [BrandAPIController::class, 'index']); Route::resource('holds', HoldAPIController::class); Route::get('today-sales-overall-report', [ReportAPIController::class, 'getTodaySalesOverallReport']); Route::resource('products', ProductAPIController::class); // Logout Route::post('logout', [AuthController::class, 'logout']); // Sales Route::resource('sales', SaleAPIController::class); // Products Route::get('get-product-by-category/{id}', [ProductAPIController::class, 'getProductByCategory']); Route::get('get-product-by-brand/{id}', [ProductAPIController::class, 'getProductByBrand']); Route::post('get-product-by-brand-and-category', [ProductAPIController::class, 'getProductByBrandAndCategory']); }); });
Close