Files

19 lines
547 B
PHP
Raw Permalink Normal View History

2026-03-15 17:08:23 +07:00
<?php
use Illuminate\Support\Facades\Artisan;
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of your Closure based console
| commands. Each Closure is bound to a command instance allowing a
| simple approach to interacting with each command's IO methods.
|
*/
Artisan::command('demo:reset', function () {
restorePublicImages();
})->describe('Restore images demo images.');