We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
form:list
1 parent 82b9243 commit 080cd71Copy full SHA for 080cd71
src/Console/FormListCommand.php
@@ -73,9 +73,9 @@ public function handle()
73
$value->ID,
74
$value->title,
75
$value->slug,
76
- collect($value->settings['actions'])->map(function ($value) {
+ collect($value->settings['actions'] ?? [])->map(function ($value) {
77
return Str::title($value['type']);
78
- })->implode(', '),
+ })->implode(', ') ?: 'None',
79
collect(
80
hf_get_form_submissions($value->ID)
81
)->count(),
0 commit comments