1
0
Fork 0
mirror of https://github.com/archtechx/template.git synced 2025-12-12 05:14:04 +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 public function boot(): void
{ {
// $this->loadViewsFrom(__DIR__ . '/../assets/views', 'package'); // $this->loadViewsFrom(__DIR__ . '/../assets/views', 'replace');
// $this->publishes([ // $this->publishes([
// __DIR__ . '/../assets/views' => resource_path('views/vendor/package'), // __DIR__ . '/../assets/views' => resource_path('views/vendor/replace'),
// ], 'package-views'); // ], 'replace-views');
// $this->mergeConfigFrom( // $this->mergeConfigFrom(
// __DIR__ . '/../assets/package.php', // __DIR__ . '/../assets/replace.php',
// 'package' // 'replace'
// ); // );
// $this->publishes([ // $this->publishes([
// __DIR__ . '/../assets/package.php' => config_path('package.php'), // __DIR__ . '/../assets/replace.php' => config_path('replace.php'),
// ], 'package-config'); // ], 'replace-config');
} }
} }