I have created two listeners (one for sending an email and the other for processing a video) without writing any code to manually link them. It seems that in Laravel 11, the connection between the event and the listeners happens automatically.
Both listeners are working fine, but the problem is that the second listener (video processing) runs before the first one (email sending).
How can I ensure that the listeners execute in the correct order?
How can I control the execution order of these listeners in Laravel 11?