@extends('layouts.app') @section('content') @if(session()->has('success'))
# | Timestamp | Status | URL | IP | Method | Request Header | Request Body | Response Header | Response Body | @foreach($in_bounds as $index=>$io)
---|---|---|---|---|---|---|---|---|---|
{{ $index+1 }} | {{ $io->created_at }} | @if($io->status == 'pending') {{ $io->status }} @elseif($io->status == 'success') {{ $io->status }} @elseif($io->status == 'error') {{ $io->status }} @endif | {{ $io->url }} | {{ $io->party_ip }} | {{ $io->method }} | {{ substr($io->req_headers, 0, 30) }}... | {{ substr($io->req_body, 0, 30) }}... | {{ substr($io->resp_headers, 0, 30) }}... | {{ substr($io->resp_body, 0, 30) }}... |
# | Timestamp | Status | URL | Method | Request Header | Request Body | Response Header | Response Body | @foreach($out_bounds as $index=>$io)
---|---|---|---|---|---|---|---|---|
{{ $index+1 }} | {{ $io->created_at }} | @if($io->status == 'pending') {{ $io->status }} @elseif($io->status == 'success') {{ $io->status }} @elseif($io->status == 'error') {{ $io->status }} @endif | {{ $io->url }} | {{ $io->method }} | {{ substr($io->req_headers, 0, 50) }}... | {{ $io->req_body }} | {{ substr($io->resp_headers, 0, 50) }}... | {{ substr($io->resp_body, 0, 50) }}... |