diff --git a/queues.md b/queues.md index 48e185a88ce..f63685bb7a7 100644 --- a/queues.md +++ b/queues.md @@ -2350,7 +2350,7 @@ public function boot(): void Event::listen(function (QueueBusy $event) { Notification::route('mail', 'dev@example.com') ->notify(new QueueHasLongWaitTime( - $event->connection, + $event->connectionName, $event->queue, $event->size )); diff --git a/routing.md b/routing.md index a0273378b32..a990c0521e9 100644 --- a/routing.md +++ b/routing.md @@ -544,9 +544,6 @@ Route::domain('{account}.example.com')->group(function () { }); ``` -> [!WARNING] -> In order to ensure your subdomain routes are reachable, you should register subdomain routes before registering root domain routes. This will prevent root domain routes from overwriting subdomain routes which have the same URI path. - ### Route Prefixes