|
1 |
| -<?php namespace WebReinvent\VaahCmsCore; |
| 1 | +<?php namespace WebReinvent\VaahCms; |
2 | 2 |
|
3 | 3 | use Illuminate\Support\ServiceProvider;
|
4 | 4 |
|
5 |
| -class VaahCmsCoreServiceProvider extends ServiceProvider { |
| 5 | +class VaahCmsServiceProvider extends ServiceProvider { |
6 | 6 |
|
7 | 7 | /**
|
8 | 8 | * Indicates if loading of the provider is deferred.
|
@@ -48,23 +48,23 @@ public function provides() {
|
48 | 48 |
|
49 | 49 | private function handleConfigs() {
|
50 | 50 |
|
51 |
| - $configPath = __DIR__ . '/Config/vaahcmscore.php'; |
| 51 | + $configPath = __DIR__ . '/Config/vaahcms.php'; |
52 | 52 |
|
53 |
| - $this->publishes([$configPath => config_path('vaahcmscore.php')], 'config'); |
| 53 | + $this->publishes([$configPath => config_path('vaahcms.php')], 'config'); |
54 | 54 |
|
55 |
| - $this->mergeConfigFrom($configPath, 'VaahCmsCore'); |
| 55 | + $this->mergeConfigFrom($configPath, 'VaahCms'); |
56 | 56 | }
|
57 | 57 |
|
58 | 58 | private function handleTranslations() {
|
59 | 59 |
|
60 |
| - $this->loadTranslationsFrom(__DIR__.'/Resources/lang', 'vaahcmscore'); |
| 60 | + $this->loadTranslationsFrom(__DIR__.'/Resources/lang', 'vaahcms'); |
61 | 61 | }
|
62 | 62 |
|
63 | 63 | private function handleViews() {
|
64 | 64 |
|
65 |
| - $this->loadViewsFrom(__DIR__.'/Resources/views', 'vaahcmscore'); |
| 65 | + $this->loadViewsFrom(__DIR__.'/Resources/views', 'vaahcms'); |
66 | 66 |
|
67 |
| - $this->publishes([__DIR__.'/Resources/views' => base_path('resources/views/vendor/vaahcmscore')], 'views'); |
| 67 | + $this->publishes([__DIR__.'/Resources/views' => base_path('resources/views/vendor/vaahcms')], 'views'); |
68 | 68 | }
|
69 | 69 |
|
70 | 70 | private function handleMigrations() {
|
|
0 commit comments