for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\Flash;
use Illuminate\Support\ServiceProvider;
class FlashServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
$this->mergeConfigFrom(__DIR__.'/../config/flash-message.php', 'flash-message');
}
* Bootstrap services.
public function boot()
$this->publishes([
__DIR__.'/../config/flash-message.php' => config_path('flash-message.php'),
]);