관리-도구
편집 파일: EventServiceProvider.php
<?php namespace Modules\Roles\Providers; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; class EventServiceProvider extends ServiceProvider { /** * Indicates if events should be discovered. * * @var bool */ protected static $shouldDiscoverEvents = true; /** * The event handler mappings for the application. * * @var array<string, array<int, string>> */ protected $listen = []; /** * Configure the proper event listeners for email verification. */ protected function configureEmailVerification(): void {} }