@extends('layouts.app') @section('content') @if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('paid'))
{{ session()->get('paid') }}
@endif @if(session()->has('fail'))
{{ session()->get('fail') }}
@endif
Create Billing
@foreach($in_bounds as $index=>$io) @endforeach
# Timestamp Status URL IP Method Request Header Request Body Response Header Response Body
{{ $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) }}...
Inform Payment
@foreach($out_bounds as $index=>$io) @endforeach
# Timestamp Status URL Method Request Header Request Body Response Header Response Body
{{ $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) }}...
@endsection