mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-01-13 15:07:49 +00:00
30 lines
769 B
PHP
30 lines
769 B
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Device;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class CleanupDeviceLogsJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/**
|
|
* Execute the job.
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
Device::each(function ($device): void {
|
|
$keepIds = $device->logs()->latest('device_timestamp')->take(50)->pluck('id');
|
|
|
|
// Delete all other logs for this device
|
|
$device->logs()
|
|
->whereNotIn('id', $keepIds)
|
|
->delete();
|
|
});
|
|
}
|
|
}
|