@extends('layouts.app') @section('title', '실행 이력 - ' . $flow->name) @section('content')

실행 이력

{{ $flow->name }}

@if($runs->isEmpty())

실행 이력이 없습니다

플로우를 실행하면 이력이 기록됩니다.

@else @foreach($runs as $run) @endforeach
ID 상태 진행 소요시간 실행일시 액션
#{{ $run->id }} {{ $run->status_label }} {{ $run->completed_steps }}/{{ $run->total_steps ?? '-' }} @if($run->duration_ms) {{ number_format($run->duration_ms / 1000, 2) }}s @else - @endif {{ $run->created_at->format('Y-m-d H:i:s') }} 상세 보기
@if($runs->hasPages())
{{ $runs->links() }}
@endif @endif
@endsection