Visibility
@foreach ([
['is_enabled', $tool->is_enabled, 'Enabled', 'Uncheck to hide the tool from the site entirely.'],
['is_popular', $tool->is_popular, 'Popular', 'Feature it on the homepage and category pages.'],
['requires_login', $tool->requires_login, 'Requires an account', 'Guests are sent to the login page.'],
['premium_only', $tool->premium_only, 'Paid plans only', 'Free users see an upgrade prompt.'],
] as [$field, $value, $label, $hint])
@endforeach
@if ($definition)
From the catalogue
@foreach ([
'Kind' => $tool->kind,
'Converter' => class_basename((string) $tool->converter_class),
'Accepts' => implode(', ', $definition->accepts) ?: '—',
'Produces' => $definition->outputExtension ?: '—',
'Category' => $tool->category?->name ?? '—',
] as $label => $value)
- {{ $label }}
- {{ $value }}
@endforeach
These come from the tool configuration files and are not editable here.
@endif