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