

namespace $correctNamespace;

use Illuminate\Support\ServiceProvider;

class $className extends ServiceProvider
{
    public function register()
    {
        // $this->mergeConfigFrom(__DIR__.'/config/$name_config.php', '$name');
    }

    public function boot()
    {
        $this->loadMigrationsFrom(__DIR__.'/Database/migrations');
        $this->loadRoutesFrom(__DIR__.'/$name_routes.php');
        $this->loadViewsFrom(__DIR__.'/views', '$name');
    }
}
