@foreach ($infos as $info)
@php
$request = json_encode(json_decode($info->request), JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
$response = json_encode(json_decode($info->response), JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE);
@endphp
Action: {{ array_key_exists($info->type, $type_arr) ? $type_arr[$info->type] : $info->type }}
@{{ $info->created_at->format('d-m-Y') }} {{ $info->created_at->format('h:i A') }}
By: {{ $info->getPostedBy->name }}
{{ roundJsonValues($request) }}
@endforeach