publishes([ __DIR__.'/../../config/config.php' => $config_path ], 'config'); } /** * Register the service provider. * * @return void */ public function register() { $this->app->singleton('pushNotification', function ($app) { return new PushNotification(); }); } /** * Get the services provided by the provider. * * @return array */ public function provides() { return array(); } }