When I pass a User into my queue job (which sends an email to the user) the email sends correctly with the right information however, I get this error:
[Illuminate\Database\Eloquent\ModelNotFoundException]No query results for model [App\Users\BaseUser]
BaseUser extends the regular User Model and changes it to use UUID. The user information is there if I var_dump() it in the job handle method. Any idea why this error is being thrown even though all the right information is available?