for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Crocodicstudio\Crudbooster\Modules\FileManagerModule;
use Illuminate\Support\ServiceProvider;
class CbFileManagerServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
$this->app['view']->addNamespace('CbFileManager', __DIR__.'/views');
$this->loadRoutesFrom( __DIR__.'/file_manager_routes.php');
}
* Register the application services.
public function register()