@include('whatsappcenter::admin.partials.styles')

Bot Flows

Multi-step conversation flows — collect info step by step

@if(session('success'))
{{ session('success') }}
@endif @if($flows->isEmpty())
🤖
No Bot Flows Yet

Create a multi-step flow to collect information from users — like a lead form over WhatsApp.

Create Your First Flow
@else
@foreach($flows as $flow)
{{ $flow->name }}
@if($flow->description)
{{ Str::limit($flow->description,55) }}
@endif
{{ $flow->trigger_type === 'button_reply' ? 'Button' : 'Keyword' }}: {{ Str::limit($flow->trigger_keyword, 20) }} {{ $flow->steps_count }} steps
{{-- Step preview --}}
@php $steps = $flow->steps ?? collect(); @endphp @forelse($steps->take(4) as $step)
{{ $step->step_order }} {{ Str::limit($step->label, 38) }} {{ $step->message_type==='list'?'📋':($step->message_type==='buttons'?'🔘':'✏️') }}
@empty
No steps configured
@endforelse @if($flow->steps_count > 4)
+ {{ $flow->steps_count - 4 }} more steps
@endif
@endforeach
@endif