15 lines
434 B
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');
|