{{ __('Platform defaults') }}
{{ __('Default dashboard widgets') }} {{ __('Widget types that every new customer dashboard is seeded with. Disabling a type stops it being provisioned to NEW accounts — existing tenant dashboards remain untouched. Width + config preview are read-only this slice.') }}
{{ __('Back to defaults') }}
@php $rows = $this->rows(); @endphp
@foreach ($rows as $row) @php $type = $row['type']; $setting = $row['setting']; @endphp @endforeach
{{ __('Widget') }} {{ __('Default width') }} {{ __('Config') }} {{ __('Status') }} {{ __('Action') }}
{{ $row['label'] }}
{{ $row['description'] }}
{{ $type->value }}
{{ $setting->default_width ?? $row['suggested_width'] }}
@if ($setting->default_width !== null && $setting->default_width !== $row['suggested_width'])
{{ __('(enum suggests :w)', ['w' => $row['suggested_width']]) }}
@endif
@if (! empty($setting->default_config_json)) {{ json_encode($setting->default_config_json) }} @else {{ __('No config') }} @endif @if ($setting->enabled) {{ __('Enabled') }} @else {{ __('Disabled') }} @endif
{{ $setting->enabled ? __('Disable') : __('Enable') }}