LiftResumeJob.php 690 Bytes
<?php

namespace App\Jobs;

use App\Models\Worker;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;

class LiftResumeJob implements ShouldQueue
{
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

    private array $workerIds;

    public function __construct(array $workerIds)
    {
        $this->workerIds = $workerIds;
    }

    public function handle()
    {
        Worker::query()
            ->whereIn('id', $this->workerIds)
            ->update([
                'updated_at' => now()
            ]);
    }
}