uawdijnntqw1x1x1
IP : 216.73.217.47
Hostname : srv913213
Kernel : Linux srv913213 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
OS : Linux
PATH:
/
var
/
www
/
krbed.in
/
..
/
yapcute.com
/
..
/
yapwebtv.com
/
Modules
/
Model
/
.
/
Providers
/
ModelServiceProvider.php
/
/
<?php namespace Modules\Model\Providers; use Illuminate\Support\ServiceProvider; use Illuminate\Database\Eloquent\Factory; class ModelServiceProvider extends ServiceProvider { /** * Boot the application events. * * @return void */ public function boot() { $this->registerTranslations(); $this->registerConfig(); $this->registerViews(); $this->registerFactories(); $this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations'); } /** * Register the service provider. * * @return void */ public function register() { $this->app->register(RouteServiceProvider::class); } /** * Register config. * * @return void */ protected function registerConfig() { $this->publishes([ __DIR__.'/../Config/config.php' => config_path('model.php'), ], 'config'); $this->mergeConfigFrom( __DIR__.'/../Config/config.php', 'model' ); } /** * Register views. * * @return void */ public function registerViews() { $viewPath = resource_path('views/modules/model'); $sourcePath = __DIR__.'/../Resources/views'; $this->publishes([ $sourcePath => $viewPath ],'views'); $this->loadViewsFrom(array_merge(array_map(function ($path) { return $path . '/modules/model'; }, \Config::get('view.paths')), [$sourcePath]), 'model'); } /** * Register translations. * * @return void */ public function registerTranslations() { $langPath = resource_path('lang/modules/model'); if (is_dir($langPath)) { $this->loadTranslationsFrom($langPath, 'model'); } else { $this->loadTranslationsFrom(__DIR__ .'/../Resources/lang', 'model'); } } /** * Register an additional directory of factories. * * @return void */ public function registerFactories() { if (! app()->environment('production') && $this->app->runningInConsole()) { app(Factory::class)->load(__DIR__ . '/../Database/factories'); } } /** * Get the services provided by the provider. * * @return array */ public function provides() { return []; } }
/var/www/krbed.in/../yapcute.com/../yapwebtv.com/Modules/Model/./Providers/ModelServiceProvider.php