@extends('layouts.app') @section('title', '실행 상세 - #' . $run->id) @section('content')
{{ $run->error_message }}
{{ $stepMethod }} {{ Str::limit($stepEndpoint, 30) }}
(미실행)
{{ $executed['request']['method'] ?? $stepMethod }} {{ Str::limit($executed['request']['endpoint'] ?? $stepEndpoint, 30) }}
{{ $executed['request']['method'] ?? '' }} {{ $executed['request']['endpoint'] ?? '' }}
@if(!empty($executed['request']['body']))
{{ json_encode($executed['request']['body'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
{{ json_encode($executed['response']['body'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
{{ $executed['request']['method'] ?? $stepMethod }} {{ Str::limit($executed['request']['endpoint'] ?? $stepEndpoint, 30) }}
{{ $executed['request']['method'] ?? '' }} {{ $executed['request']['endpoint'] ?? '' }}
@if(!empty($executed['request']['body']))
{{ json_encode($executed['request']['body'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
{{ json_encode($executed['response']['body'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
{{ $apiLog['method'] ?? '' }} {{ $apiLog['uri'] ?? '' }}
@else
{{ $apiLog['status'] ?? '-' }}
@endif
{{ $apiLog['timestamp'] ?? '' }}
{{ $apiLog['raw'] }}
@else
{{-- raw가 없는 경우 기존 방식 --}}
@if($isReq && !empty($apiLog['input']))
{{ json_encode($apiLog['input'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) }}
{{ is_array($apiLog['error']) ? json_encode($apiLog['error'], JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE) : $apiLog['error'] }}
스텝 정보가 없습니다.