24 lines
547 B
PHP
24 lines
547 B
PHP
<?php
|
|
|
|
namespace Webkul\Notification\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Broadcast;
|
|
|
|
class NotificationServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Bootstrap services.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function boot()
|
|
{
|
|
$this->app->register(EventServiceProvider::class);
|
|
|
|
$this->app->register(ModuleServiceProvider::class);
|
|
|
|
$this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations');
|
|
}
|
|
} |