event = app()->get('event'); $this->sendNotifications = app(SendNotificationsHook::class); } public function testHandle(): void { $this->event->trigger('message.send_notifications', [ [ 'user_id' => 1, 'title' => 'test', 'content' => 'test', 'type' => 5, 'template_code' => 'fasfsad', 'template_context' => ['abd'=>123], ] ]); } }