for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tequilarapido\RestrictAccess;
class ServiceProvider extends \Illuminate\Support\ServiceProvider
{
public function boot()
$this->publishes([
__DIR__.'/../config/config.php' => config_path('restrict_access.php'),
], 'config');
}
public function register()
$this->mergeConfigFrom(__DIR__.'/../config/config.php', 'restrict_access');