Linux premium61.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
Server IP : 185.61.154.53 & Your IP : 216.73.216.73
Domains :
Cant Read [ /etc/named.conf ]
User : vdeshvpx
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
vdeshvpx /
adminapi.linkcrow.com /
routes /
Delete
Unzip
Name
Size
Permission
Date
Action
.htaccess
197
B
-r--r--r--
2026-04-08 06:51
api.php
4.83
KB
-rwxrwxrwx
2025-03-12 14:28
channels.php
576
B
-rwxrwxrwx
2024-06-30 18:36
console.php
611
B
-rwxrwxrwx
2024-06-30 18:36
current.php
22
B
-rw-r--r--
2026-04-01 01:39
error_log
1.87
KB
-rw-r--r--
2026-02-09 00:55
web.php
510
B
-rwxrwxrwx
2024-06-30 18:36
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-08 06:50
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-08 06:50
Save
Rename
<?php use App\Models\User; use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; use App\Http\Controllers\AuthController; use App\Http\Controllers\LinkController; use App\Http\Controllers\UserController; use App\Http\Controllers\OrderController; use App\Http\Controllers\BillingController; use App\Http\Controllers\DashboardController; use App\Http\Controllers\LinkAssignController; use App\Http\Controllers\UserProfileController; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | is assigned the "api" middleware group. Enjoy building your API! | */ // Route::post('register', [AuthController::class, 'register']); Route::post('login', [AuthController::class, 'login']); Route::post('forgot-password', [AuthController::class, 'forgotPassword']); Route::post('reset-password', [AuthController::class, 'resetPassword']); Route::middleware('auth:sanctum')->group( function () { Route::middleware('Admin')->group(function () { Route::get('agencies-list', [UserController::class, 'AgencyList'])->name('agencies-list'); Route::get('orders-list', [OrderController::class, 'index'])->name('orders'); Route::get('order/{order}', [OrderController::class, 'show'])->name('order'); Route::get('orders/export', [OrderController::class, 'csvExport'])->name('order/export'); // Route::get('billing-list', [BillingController::class, 'List'])->name('invoices'); // Route::get('invoice/{id}', [BillingController::class, 'invocie'])->name('invoice'); // Route::get('invoices-export', [BillingController::class, 'csvExport'])->name('invoice-export'); // Route::get('invoice-pdf-download/{id}', [BillingController::class, 'invoicePDFDownload'])->name('invoice-pdf-download'); // Users Route::get('users', [UserController::class, 'index'])->name('users'); Route::get('users/{id}', [UserController::class, 'show'])->name('user'); Route::post('create-user', [UserController::class, 'addUser'])->name('create-user'); Route::put('update-user/{id}', [UserController::class, 'updateUser'])->name('update-user'); Route::delete('delete-user/{id}', [UserController::class, 'deleteUser'])->name('delete-user'); // Roles Route::get('roles', [UserController::class, 'getRoles'])->name('roles'); }); Route::middleware('role:Admin,Outreacher,Editor')->group(function () { Route::post('logout', [AuthController::class, 'logout']); Route::get('get-user', [AuthController::class, 'getUser']); Route::get('dashboard-stats', [DashboardController::class, 'dashboardStats'])->name('dashboard-stats'); Route::get('links-list', [LinkController::class, 'index'])->name('links-list'); Route::get('link/{link}', [LinkController::class, 'show'])->name('link'); Route::get('links/export', [LinkController::class, 'csvExport'])->name('links/export'); Route::get('order/{order}/links', [LinkController::class, 'linksByOrderId'])->name('order/links'); Route::get('order/{id}/links/export', [LinkController::class, 'csvExport'])->name('order/links/export'); Route::get('get-outreachers-editors', [UserController::class, 'getOutreachersEditors'])->name('get-outreachers-editors'); // Assign Links Route::post('assign-link', [LinkAssignController::class, 'assignLinks'])->name('assign-link'); // User Profile Route::get('user-profile', [UserProfileController::class, 'index'])->name('get-user-profile'); Route::post('update-user-profile', [UserProfileController::class, 'storeOrUpdate'])->name('update-user-profile'); Route::post('update-user-profile-dp', [UserProfileController::class, 'updateProfileDp'])->name('update-user-profile-dp'); Route::post('update-password-profile', [UserProfileController::class, 'resetPasswordFromProfile'])->name('update-password-profile'); // Country and States Route::get('country-list', [OrderController::class, 'countryList'])->name('country-list'); Route::get('state-list/{id}', [OrderController::class, 'stateList'])->name('state-list'); }); Route::middleware('role:Editor')->group(function () { Route::post('generate-article-for-link/{id}', [LinkController::class, 'generateArticleForLink'])->name('generate-article-for-link'); Route::post('save-article-for-link/{id}', [LinkController::class, 'saveArticleForLink'])->name('save-article-for-link'); }); Route::middleware('role:Outreacher')->group(function () { Route::get('article-download/{id}', [LinkController::class, 'downloadArticlePDF'])->name('article-download'); }); });