1
0
Fork 0
mirror of https://github.com/archtechx/template.git synced 2025-12-12 13:24:03 +00:00

Add 'replace's to the provider stub

This commit is contained in:
Samuel Štancl 2021-05-23 13:25:31 +02:00 committed by GitHub
parent b5f089c28e
commit 9e8a2e7464
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,19 +14,19 @@ class REPLACEServiceProvider extends ServiceProvider
public function boot(): void
{
// $this->loadViewsFrom(__DIR__ . '/../assets/views', 'package');
// $this->loadViewsFrom(__DIR__ . '/../assets/views', 'replace');
// $this->publishes([
// __DIR__ . '/../assets/views' => resource_path('views/vendor/package'),
// ], 'package-views');
// __DIR__ . '/../assets/views' => resource_path('views/vendor/replace'),
// ], 'replace-views');
// $this->mergeConfigFrom(
// __DIR__ . '/../assets/package.php',
// 'package'
// __DIR__ . '/../assets/replace.php',
// 'replace'
// );
// $this->publishes([
// __DIR__ . '/../assets/package.php' => config_path('package.php'),
// ], 'package-config');
// __DIR__ . '/../assets/replace.php' => config_path('replace.php'),
// ], 'replace-config');
}
}