auditionadmin/routes/console.php

15 lines
434 B
PHP

<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote')->hourly();
Artisan::command('logs:remove', function () {
exec('rm -f '.storage_path('logs/*.log'));
exec('rm -f '.base_path('*.log'));
$this->comment('Logs have been removed!');
})->describe('Remove log files');