1
0
Fork 0

routes/console.php: minor style fix

This commit is contained in:
Henrik Hautakoski 2023-01-30 23:36:05 +01:00
parent 62807496d5
commit df142f5fe9

View file

@ -164,7 +164,7 @@ Artisan::command('card:edit {id} {--body=} {--column=} {--value=}', function ($i
})->purpose('Update a card');
Artisan::command('card:list {--trashed}', function ($trashed) {
$cols = ['id', 'character_id', 'raid_id', 'role', 'class', 'body' ];
$cols = [ 'id', 'character_id', 'raid_id', 'role', 'class', 'body' ];
$q = Card::query();
if ($trashed) {
$cols[] = 'deleted_at';