![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/rentpix.corals.io/storage/framework/views/ |
<?php $__env->startSection('content_header'); ?> <?php $__env->startComponent('components.content_header'); ?> <?php $__env->slot('page_title'); ?> <?php echo e($title_singular); ?> <?php $__env->endSlot(); ?> <?php $__env->slot('breadcrumb'); ?> <?php echo e(Breadcrumbs::render('http_log_show', $title_singular)); ?> <?php $__env->endSlot(); ?> <?php echo $__env->renderComponent(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('css'); ?> <style> .pre-wrapper { overflow: auto; } </style> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <?php $__env->startComponent('components.box',['box_class'=>'box-success']); ?> <div class="row"> <div class="col-md-12"> <div class="table-responsive"> <table class="table"> <thead> <tr> <th>Uri</th> <th>Method</th> <th>IP Address</th> <th>User</th> <th>Email</th> <th>Created at</th> </tr> </thead> <tbody> <tr> <td><?php echo e($httpLog->presentStripTags('uri')); ?></td> <td><?php echo e($httpLog->present('method')); ?></td> <td><?php echo e($httpLog->present('ip')); ?></td> <td><?php echo $httpLog->present('user_id'); ?></td> <td><?php echo $httpLog->present('email'); ?></td> <td><?php echo $httpLog->present('created_at'); ?></td> </tr> </tbody> </table> </div> </div> </div> <div class="row"> <div class="col-md-4"> <label class="d-block m-b-10 mb-2"> Headers <a href="#" onclick="event.preventDefault();" class="copy-button" data-clipboard-target="#shortcode_headers"><i class="fa fa-clipboard"></i></a> </label> <div class="pre-wrapper"> <pre id="shortcode_headers"> <?php echo json_encode($httpLog->headers, JSON_PRETTY_PRINT); ?> </pre> </div> </div> <div class="col-md-4"> <div> <label class="d-block m-b-10 mb-2"> Body <a href="#" onclick="event.preventDefault();" class="copy-button" data-clipboard-target="#shortcode_body"><i class="fa fa-clipboard"></i></a> </label> <div class="pre-wrapper"> <pre id="shortcode_body"> <?php echo json_encode($httpLog->body, JSON_PRETTY_PRINT); ?> </pre> </div> </div> <div> <label class="d-block m-b-10 mb-2"> Files <a href="#" onclick="event.preventDefault();" class="copy-button" data-clipboard-target="#shortcode_files"><i class="fa fa-clipboard"></i></a> </label> <div class="pre-wrapper"> <pre id="shortcode_files"> <?php echo json_encode($httpLog->files, JSON_PRETTY_PRINT); ?> </pre> </div> </div> </div> <div class="col-md-4"> <label class="d-block m-b-10 mb-2">Response <a href="#" onclick="event.preventDefault();" class="copy-button" data-clipboard-target="#shortcode_response"><i class="fa fa-clipboard"></i></a> </label> <div class="pre-wrapper"> <pre id="shortcode_response"> <?php echo json_encode($httpLog->response, JSON_PRETTY_PRINT); ?> </pre> </div> </div> </div> <?php echo $__env->renderComponent(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <script> let elements = ['shortcode_headers', 'shortcode_body', 'shortcode_files', 'shortcode_response'] elements.forEach(function (elementId) { $("#" + elementId).text(JSON.stringify(JSON.parse($("#" + elementId).text()), null, 3)); }) </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.crud.show', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/corals/rentpix.corals.io/Corals/core/Activity/HttpLogger/resources/views/http_logs/show.blade.php ENDPATH**/ ?>