Размер файла: 865B
<?php
namespace App\Console\Commands;
use App\Models\Reader;
use Illuminate\Console\Command;
use Symfony\Component\Console\Command\Command as SymfonyCommand;
class DeleteReaders extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'delete:readers';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Delete readers';
/**
* Удаляет старые записи статистики просмотров и скачиваний
*/
public function handle(): int
{
Reader::query()
->where('created_at', '<', strtotime('-6 month', SITETIME))
->delete();
$this->info('Readers successfully deleted.');
return SymfonyCommand::SUCCESS;
}
}