@extends('layouts.admin') @section('title', 'Edit Automation — '.$automation->name) @section('admin')
@include('admin._nav')

{{ $automation->name }}

Trigger: {{ $automation->trigger_type }} · Status: {{ $automation->status }}

Stats @if($automation->status !== \App\Models\Automation::STATUS_ACTIVE)
@csrf
@else
@csrf
@endif
@if(session('success'))
{{ session('success') }}
@endif @if(session('error'))
{{ session('error') }}
@endif
@csrf @method('PUT')

Fires once per subscriber when they DOI-confirm. No config needed.

Fires when the configured tag is applied. Config: {"tag_slug":"daily-devotional"}

Fires when anchor date + offset_days has passed. Config: {"anchor":"confirmed_at","offset_days":7} (anchor = created_at | confirmed_at | last_emailed_at)

Fires for every active subscriber holding the configured tag whenever a new devotional Video is created. Config: {"tag_slug":"daily-devotional"}

Steps

No steps yet — add one to begin.

@endsection