Hi everyone. I have a jobs table where I added a new column myColumn. How to fill in the data column myColumn, using Mail: later, or in the handle Jobs class

    1 answer 1

    For example, you can:

    \DB::table('jobs')->insert(['myColumn'=>'значение']); 

    or you can create a model and work with data through it.

    • There is no way to add it through the queue manager when adding (creating) a queue - Nothing Impossible
    • as an option, you can create an event and call it when creating / adding a queue - Andrew V.