@extends('layouts.customer') @section('title', 'Auto Responders') @section('page-title', 'Auto Responders') @section('content')
Search
Create Auto Responder
@forelse($autoResponders as $autoResponder) @empty @endforelse
Name Trigger Status Sent Actions
{{ $autoResponder->name }}
{{ $autoResponder->subject }}
{{ ucfirst($autoResponder->trigger) }} {{ ucfirst($autoResponder->status) }} {{ number_format($autoResponder->sent_count ?? 0) }}
Edit Workflow
@csrf @method('DELETE') Delete
No auto responders found. Create your first auto responder
@if($autoResponders->hasPages())
{{ $autoResponders->links() }}
@endif
@endsection