2018-11-15 10:45:49 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Providers;
|
|
|
|
|
2021-11-26 13:36:57 +00:00
|
|
|
use Illuminate\Notifications\ChannelManager;
|
|
|
|
use Illuminate\Support\Facades\Notification;
|
2018-11-15 10:45:49 +00:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2021-06-20 13:03:20 +00:00
|
|
|
use Laravel\Passport\Passport;
|
2018-11-15 10:45:49 +00:00
|
|
|
|
2021-11-26 13:36:57 +00:00
|
|
|
use App\Notifications\Channels\NetmailChannel;
|
|
|
|
use App\Models\Netmail;
|
2021-07-16 06:55:26 +00:00
|
|
|
use App\Traits\SingleOrFail;
|
|
|
|
|
2018-11-15 10:45:49 +00:00
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
|
|
{
|
2021-07-16 06:55:26 +00:00
|
|
|
use SingleOrFail;
|
|
|
|
|
2021-05-22 14:38:19 +00:00
|
|
|
/**
|
|
|
|
* Register any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function register()
|
|
|
|
{
|
2021-06-20 13:03:20 +00:00
|
|
|
Passport::ignoreMigrations();
|
2021-11-26 13:36:57 +00:00
|
|
|
|
|
|
|
Notification::resolved(function (ChannelManager $service) {
|
|
|
|
$service->extend('netmail', function ($app) {
|
|
|
|
return new NetmailChannel($app->make(Netmail::class));
|
|
|
|
});
|
|
|
|
});
|
2021-05-22 14:38:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Bootstrap any application services.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function boot()
|
|
|
|
{
|
2021-07-16 06:55:26 +00:00
|
|
|
static::bootSingleOrFail();
|
2021-05-22 14:38:19 +00:00
|
|
|
}
|
2018-11-15 10:45:49 +00:00
|
|
|
}
|