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

@@ -7,6 +7,11 @@ use Illuminate\Database\Eloquent\Factory;
class InternalServiceProvider extends ServiceProvider
{
protected $listen = [
ForgetPassword::class => [
SendVerifyEmail::class,
],
];
/**
* @var string $moduleName
*/
@@ -51,7 +56,8 @@ class InternalServiceProvider extends ServiceProvider
module_path($this->moduleName, 'Config/config.php') => config_path($this->moduleNameLower . '.php'),
], 'config');
$this->mergeConfigFrom(
module_path($this->moduleName, 'Config/config.php'), $this->moduleNameLower
module_path($this->moduleName, 'Config/config.php'),
$this->moduleNameLower
);
}