Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
gambling
/
app
/
Providers
:
AppServiceProvider.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace App\Providers; use App\Constants\Status; use App\Lib\Searchable; use App\Models\AdminNotification; use App\Models\DiamondRequest; use App\Models\Frontend; use App\Models\SupportTicket; use App\Models\User; use Illuminate\Database\Eloquent\Builder; use Illuminate\Pagination\Paginator; use Illuminate\Support\Facades\Schema; 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 { try { if (!Schema::hasTable('cache')) { config(['cache.default' => 'array']); } } catch (\Exception $e) { config(['cache.default' => 'array']); } 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(), 'pendingDiamondCount' => DiamondRequest::where('status', Status::DIAMOND_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 (Schema::hasTable('general_settings') && gs('force_ssl')) { \URL::forceScheme('https'); } Paginator::useBootstrapFive(); } }