/home/techb158/immovalet.com/platform/plugins/audit-log/src/Commands
NameSizeModeActions
ActivityLogClearCommand.php12000644editdlrm
CleanOldLogsCommand.php7450644editdlrm
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!'); } }