Files
vuefilemanager/routes/console.php
Čarodej 08139c8f96 - usage metric fix
- ui fix
- index:usage artisan command
- demo payment settings
2022-01-10 15:43:55 +01:00

18 lines
584 B
PHP

<?php
use Support\Scheduler\Actions\ReportUsageAction;
/*
|--------------------------------------------------------------------------
| 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('report:usage', fn () => resolve(ReportUsageAction::class)())
->describe('Store user usage estimates for metered billing');