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 /
Game source /
core /
app /
Providers /
Delete
Unzip
Name
Size
Permission
Date
Action
AppServiceProvider.php
2.88
KB
-rw-r--r--
2024-09-25 09:27
Save
Rename
<?php namespace App\Providers; use App\Constants\Status; use App\Lib\Searchable; use App\Models\AdminNotification; use App\Models\Deposit; use App\Models\Frontend; use App\Models\SupportTicket; use App\Models\User; use App\Models\Withdrawal; use Illuminate\Database\Eloquent\Builder; use Illuminate\Pagination\Paginator; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Register any application services. */ public function register(): void { Builder::mixin(new Searchable); } /** * Bootstrap any application services. */ public function boot(): void { if (!cache()->get('SystemInstalled')) { $envFilePath = base_path('.env'); if (!file_exists($envFilePath)) { header('Location: install'); exit; } $envContents = file_get_contents($envFilePath); if (empty($envContents)) { header('Location: install'); exit; } else { cache()->put('SystemInstalled', true); } } $viewShare['emptyMessage'] = 'Data not found'; view()->share($viewShare); view()->composer('admin.partials.sidenav', function ($view) { $view->with([ 'bannedUsersCount' => User::banned()->count(), 'emailUnverifiedUsersCount' => User::emailUnverified()->count(), 'mobileUnverifiedUsersCount' => User::mobileUnverified()->count(), 'kycUnverifiedUsersCount' => User::kycUnverified()->count(), 'kycPendingUsersCount' => User::kycPending()->count(), 'pendingTicketCount' => SupportTicket::whereIN('status', [Status::TICKET_OPEN, Status::TICKET_REPLY])->count(), 'pendingDepositsCount' => Deposit::pending()->count(), 'pendingWithdrawCount' => Withdrawal::pending()->count(), 'updateAvailable' => version_compare(gs('available_version'), systemDetails()['version'], '>') ? 'v' . gs('available_version') : false, ]); }); view()->composer('admin.partials.topnav', function ($view) { $view->with([ 'adminNotifications' => AdminNotification::where('is_read', Status::NO)->with('user')->orderBy('id', 'desc')->take(10)->get(), 'adminNotificationCount' => AdminNotification::where('is_read', Status::NO)->count(), ]); }); view()->composer('partials.seo', function ($view) { $seo = Frontend::where('data_keys', 'seo.data')->first(); $view->with([ 'seo' => $seo ? $seo->data_values : $seo, ]); }); if (gs('force_ssl')) { \URL::forceScheme('https'); } Paginator::useBootstrapFive(); } }