@php
$jsonData = json_decode($data);
@endphp
@foreach ($jsonData as $key => $value)
@php
$imagePath = assets_path("images/receipt_img/{$value}"); // Adjust the file extension as needed
$imageExists = file_exists($imagePath);
@endphp
-
{{ $key }}:
@if ($value != new stdClass())
@if ($imageExists)
@else
{{ $value }}
@endif
@endif
@endforeach