A SaaS app needs to send welcome emails, generate a PDF invoice, and notify a Slack channel after a user registers. Which Laravel feature best handles this as a single, clean unit?
-
A
Queued event listeners on a RegisteredUser event
-
B
A single controller method calling each task sequentially
-
C
A scheduled Artisan command that polls for new users
-
D
A middleware that runs after the response is sent