I’d like to have user’s download center in my laravel application
Hence , i need to add the user information for each job batches,
The simplest thoughts in my mind is to add the user_id column on the job_batches table
however it seems that the job_batches table will be updated under the hood by laravel itself when the job dispatched
If using the above approach, i need to “interrupt” the laravel insert process by adding the user_id, but i don’t know how to do that
How can I achieve this ? or maybe there is more suitable way to do it rather than interrupting laravel’s default process