for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace crocodicstudio\crudbooster\Modules\PrivilegeModule;
use Illuminate\Support\ServiceProvider;
class CbPrivilegesServiceProvider extends ServiceProvider
{
/**
* Bootstrap the application services.
*
* @return void
*/
public function boot()
$this->app['view']->addNamespace('CbPrivilege', __DIR__.'/views');
$this->loadRoutesFrom( __DIR__.'/privileges_routes.php');
$this->publishes([__DIR__.'/localization' => resource_path('lang/crudbooster')], 'cb_localization');
}
* Register the application services.
public function register()