/home/techb158/immovalet.com/platform/plugins/audit-log/src/Commands
Edit: /home/techb158/immovalet.com/platform/plugins/audit-log/src/Commands/ActivityLogClearCommand.php (1200B)
auditLogRepository = $auditLogRepository;
}
/**
* Execute the console command.
*
* @throws Throwable
*/
public function handle()
{
$this->info('Processing...');
$count = $this->auditLogRepository->count();
$this->auditLogRepository->getModel()->truncate();
$this->info('Done. Deleted ' . $count . ' records!');
}
}