I use laravel 5.3
If class on the notification like this :
class UserRegistered extends Notification implements ShouldQueue
I edit email sender in env, then I check send email, the email sender not update
If class on the notification like this :
class UserRegistered extends Notification
I edit email sender in env, then I check send email, the email sender update
Why email sender in env staging server not update if I use shouldqueue on laravel?