update laravel config

This commit is contained in:
Khoubza Younes
2020-12-17 07:05:07 +01:00
parent 10cd4b63a4
commit d60d5f40f0
2 changed files with 3 additions and 1 deletions
+1
View File
@@ -4,6 +4,7 @@ return array(
'scripts' => array(
'https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js',
'https://cdnjs.cloudflare.com/ajax/libs/pnotify/3.2.1/pnotify.js',
'/vendor/flasher/flasher-pnotify.js',
),
'styles' => array(
'https://cdnjs.cloudflare.com/ajax/libs/pnotify/3.2.1/pnotify.css',
+2 -1
View File
@@ -36,7 +36,8 @@ class Laravel implements ServiceProviderInterface
*/
public function boot(FlasherPnotifyServiceProvider $provider)
{
$provider->publishes(array(flasher_path(__DIR__.'/../../Resources/config/config.php') => config_path('flasher_pnotify.php')), 'config');
$provider->publishes(array(flasher_path(__DIR__.'/../../Resources/config/config.php') => config_path('flasher_pnotify.php')), 'flasher-config');
$provider->publishes(array(flasher_path(__DIR__.'/../../Resources/public') => public_path(flasher_path('vendor/flasher'))), 'flasher-public');
}
/**