@extends('layouts.app') @section('content')
@if(session('success')) @endif @if(session('error')) @endif

WhatsApp Flows

@forelse($flows as $flow) @empty @endforelse
Name Category Status WhatsApp Status Created At Actions
{{ $flow->name }} {{ $flow->category }} {{ ucfirst($flow->status) }} {{ ucfirst($flow->whatsapp_sync_status) }} @if($flow->whatsapp_flow_id) ID: {{ $flow->whatsapp_flow_id }} @endif {{ $flow->created_at->format('M d, Y H:i') }}
@if($flow->status !== 'published')
@csrf
@endif @if($flow->status === 'published') @endif @if($flow->status === 'published' && $flow->whatsapp_sync_status !== 'synced') @endif

No flows available

@push('scripts') @endpush @push('styles') @endpush @endsection