@extends('layouts.master') @section('title', 'Meta Flow List') @section('content-header')
@endsection @section('content')
{{--

MetaFlow Logs

--}}
{{-- add a search input field --}}
@csrf
{{--
--}}
{{-- all statuses in select --}} {{--
--}}
@forelse($metaFlows as $metaFlow) @empty @endforelse
Flow ID Verification ID Flow Name Identity Status Created At Action
{{ $metaFlow->flow_id }} {{ $metaFlow->verification_id }} {{ $metaFlow->flow_name }} {{ $metaFlow->identity_status ?? 'N/A' }} {{ $metaFlow->created_at->format('m-d-Y h:i:a') }} Details
No Flow Data Found
{{ $metaFlows->links() }}
@endsection