From 737b5eb3ef8b8c72a322eaedd5f7e6a1a2f65c38 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 22 Jun 2016 09:57:59 -0500 Subject: [PATCH] stub notifications --- app/Notifications/.gitkeep | 0 config/app.php | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 app/Notifications/.gitkeep diff --git a/app/Notifications/.gitkeep b/app/Notifications/.gitkeep new file mode 100644 index 00000000..e69de29b diff --git a/config/app.php b/config/app.php index 06ce3e7a..f3d66185 100644 --- a/config/app.php +++ b/config/app.php @@ -2,6 +2,18 @@ return [ + /* + |-------------------------------------------------------------------------- + | Application Name + |-------------------------------------------------------------------------- + | + | This value is the name of your application. This value is used when the + | framework needs to place the application's name in a notification or + | any other location as required by the application or its packages. + */ + + 'name' => 'My Application', + /* |-------------------------------------------------------------------------- | Application Environment @@ -140,6 +152,7 @@ return [ Illuminate\Foundation\Providers\FoundationServiceProvider::class, Illuminate\Hashing\HashServiceProvider::class, Illuminate\Mail\MailServiceProvider::class, + Illuminate\Notifications\NotificationServiceProvider::class, Illuminate\Pagination\PaginationServiceProvider::class, Illuminate\Pipeline\PipelineServiceProvider::class, Illuminate\Queue\QueueServiceProvider::class,