This commit is contained in:
Glenn Hermans 2020-10-05 10:57:49 +02:00 committed by GitHub
parent 1e8c4102fa
commit c62fe7a78d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -24,6 +24,7 @@ class ShopServiceProvider extends ServiceProvider
$this->loadRoutesFrom(__DIR__ . '/../Http/routes.php');
$this->loadTranslationsFrom(__DIR__ . '/../Resources/lang', 'shop');
$this->publishes([__DIR__.'/../Resources/lang' => resource_path('lang/vendor/shop')]);
$this->publishes([
__DIR__ . '/../../publishable/assets' => public_path('themes/default/assets'),
@ -86,4 +87,4 @@ class ShopServiceProvider extends ServiceProvider
dirname(__DIR__) . '/Config/system.php', 'core'
);
}
}
}