{{ __('Platform defaults') }}
{{ __('Default automations') }} {{ __('Background rules every new customer workspace inherits. They are provisioned DISABLED on tenants — operators turn them on after inspection. Disabling here stops them being provisioned to NEW accounts; existing tenant copies remain tenant-owned.') }}
{{ __('Back to defaults') }} {{ __('Create new platform default automation') }}
@php $automations = $this->automations(); @endphp @if ($automations->isEmpty())
{{ __('No platform-default automations yet.') }}
@else
@foreach ($automations as $automation) @endforeach
{{ __('Name') }} {{ __('Trigger') }} {{ __('Cadence') }} {{ __('Status') }} {{ __('Manage') }}
{{ $automation->name }} {{ $automation->triggerTypeLabel() }} {{ $automation->cadenceLabel() }} @if ($automation->is_default_enabled) {{ __('Enabled') }} @else {{ __('Disabled') }} @endif
{{ $automation->is_default_enabled ? __('Disable') : __('Enable') }} {{ __('Edit') }} {{ __('Duplicate') }} @if ($confirmingArchiveId === $automation->id) {{ __('Confirm remove') }} {{ __('Cancel') }} @else {{ __('Remove') }} @endif

{{ __('Automations hard-delete because the table has no soft-delete column. Tenant copies survive — their platform_default_id back-reference is nulled.') }}

@endif