Redis – Saving a Newly Created Eloquent Model as a Job Property Prevents the Job from Being Handled
I have a Laravel job that is supposed to accept a newly created Eloquent model as a constructor attribute, then perform a save() operation on it in the handle() method. However, as soon as I try saving the model to…