@extends('layouts.app') @section('title', 'API 플로우 테스터') @section('content')

API 플로우 테스터

새 플로우
@if($flows->isEmpty())

등록된 플로우가 없습니다

새 플로우를 생성하여 API 테스트를 시작하세요.

@else @foreach($flows as $flow) @php $latestRun = $flow->runs->first(); @endphp @endforeach
이름 카테고리 스텝 최근 실행 상태 액션
{{ $flow->name }}
@if($flow->description)
{{ $flow->description }}
@endif
@if($flow->category) {{ $flow->category }} @else - @endif {{ $flow->step_count }}개 @if($latestRun) {{ $latestRun->created_at->diffForHumans() }} @else - @endif @if($latestRun) {{ $latestRun->status_label }} @else 대기 @endif
@csrf
@if($flows->hasPages())
{{ $flows->links() }}
@endif @endif
@endsection @push('scripts') @endpush