for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ottosmops\Settings;
use Illuminate\Support\ServiceProvider;
class SettingsServiceProvider extends ServiceProvider
{
public function boot()
$this->publishes([
__DIR__ . '/../config/settings.php' => config_path('settings.php'),
], 'config');
__DIR__ . '/../database/migrations/0000_00_00__create_settings_table.php' => base_path() . '/database/migrations/'. date('Y_m_d_His', time()) . '_create_settings_table.php'
], 'migrations');
}
public function register()