Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
.trash /
routes /
Delete
Unzip
Name
Size
Permission
Date
Action
admin.php
4.5
KB
-rw-r--r--
2025-09-15 01:47
console.php
554
B
-rw-r--r--
2025-09-15 01:55
error_log
1.91
KB
-rw-r--r--
2025-09-15 21:11
web.php
2.67
KB
-rw-r--r--
2025-09-15 01:50
Save
Rename
<?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\HomeController; use App\Http\Controllers\AuthController; use App\Http\Controllers\AdController; use App\Http\Controllers\WalletController; use App\Http\Controllers\ProfileController; use App\Http\Controllers\Admin\AdminAuthController; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider and all of them will | be assigned to the "web" middleware group. Make something great! | */ // Public routes Route::get('/', [HomeController::class, 'index'])->name('home'); Route::get('/login', [AuthController::class, 'showLoginForm'])->name('login'); Route::post('/login', [AuthController::class, 'login']); Route::get('/register', [AuthController::class, 'showRegisterForm'])->name('register'); Route::post('/register', [AuthController::class, 'register']); Route::post('/logout', [AuthController::class, 'logout'])->name('logout'); // Protected user routes Route::middleware('auth')->group(function () { Route::get('/dashboard', [HomeController::class, 'dashboard'])->name('dashboard'); Route::get('/ads', [AdController::class, 'index'])->name('ads.index'); Route::post('/ads/{ad}/watch', [AdController::class, 'watch'])->name('ads.watch'); Route::post('/ads/{ad}/verify', [AdController::class, 'verify'])->name('ads.verify'); // Wallet routes Route::get('/wallet', [WalletController::class, 'index'])->name('wallet.index'); Route::post('/wallet/withdraw', [WalletController::class, 'withdraw'])->name('wallet.withdraw'); Route::post('/wallet/deposit', [WalletController::class, 'deposit'])->name('wallet.deposit'); Route::get('/wallet/transactions', [WalletController::class, 'transactions'])->name('wallet.transactions'); // Profile routes Route::get('/profile', [ProfileController::class, 'index'])->name('profile.index'); Route::post('/profile/update', [ProfileController::class, 'update'])->name('profile.update'); Route::post('/profile/password', [ProfileController::class, 'updatePassword'])->name('profile.password'); }); // Admin Authentication Routes Route::prefix('admin')->name('admin.')->group(function () { Route::get('/login', [AdminAuthController::class, 'showLoginForm'])->name('login'); Route::post('/login', [AdminAuthController::class, 'login']); Route::post('/logout', [AdminAuthController::class, 'logout'])->name('logout'); }); // Include admin routes require __DIR__.'/admin.php';