> */ protected $listen = [ Registered::class => [ SendEmailVerificationNotification::class, ], ObjectActionCreate::class => [ SendActionBrowserNotification::class, SendActionEmailNotification::class, ] ]; /** * Register any events for your application. */ public function boot(): void { Requirement::observe(RequirementObserver::class); Task::observe(TaskObserver::class); Asset::observe(AssetObserver::class); Plan::observe(PlanObserver::class); } /** * Determine if events and listeners should be automatically discovered. */ public function shouldDiscoverEvents(): bool { return false; } }