WIP email notification

This commit is contained in:
pajri
2022-12-29 09:22:28 +07:00
parent 77f67fca1e
commit cb834d10bb
8 changed files with 211 additions and 2 deletions

View File

@@ -0,0 +1,35 @@
<?php
namespace Modules\Internal\Providers;
use Illuminate\Support\ServiceProvider;
use Modules\Internal\Events\ForgetPassword;
use Modules\Internal\Listeners\SendVerifyEmail;
class EventServiceProvider extends ServiceProvider
{
protected $listen = [
ForgetPassword::class => [
SendVerifyEmail::class,
],
];
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
//
}
/**
* Get the services provided by the provider.
*
* @return array
*/
public function provides()
{
return [];
}
}