{{ __('Rules that run automatically on a cadence. Set conditions, actions, and an optional ticket scope. The runner ticks every 15 minutes — each rule fires only when its own schedule cadence has elapsed.') }}
| {{ __('Name') }} | {{ __('Trigger') }} | {{ __('Schedule') }} | {{ __('Scope') }} | {{ __('Status') }} | {{ __('Last run') }} | |
|---|---|---|---|---|---|---|
|
{{ $automation->name }}
@if ($days !== null)
{{ __('After :n day(s) since :basis', [
'n' => $days,
'basis' => $automation->activityBasis()->label(),
]) }}
@endif
|
|
{{ $automation->cadenceLabel() }} |
@if ($scope === [])
{{ __('All tickets') }}
@else
@if (! empty($scope['assigned_user_id']))
@endif
|
@if ($automation->enabled)
|
@if ($automation->last_run_at) {{ $automation->last_run_at->diffForHumans() }} @else {{ __('Never') }} @endif |
@if ($canManage)
@if ($confirmingDeleteId === $automation->id)
@else
{{ __('Read-only') }}
@endif
|