2017-08-25 115 views

回答

0

查找到隊列 - https://laravel.com/docs/5.5/queues

你會產生每隔一小時(例如)工作,檢查是否有與updated_at時間戳超過一週的任何職位。循環瀏覽並刪除。

實施例:

$stale_posts = Posts::where('updated_at', '<', Carbon::now()->subDays(7))->get(); 

foreach ($stale_posts as $post) { 
    $post->delete(); 
}