Product Images

@foreach($productImages as $images) @foreach($images as $image) @php $image->ImageExif = json_decode($image->ImageExif); @endphp

Product Code: {{ $image->ProductCode }}
{{ $image->ImageName }}
Size {{ round($image->ImageExif->FileSize / 1000,2) }} Kb
Exif date {{ gmdate("d/m/Y", $image->ImageExif->FileDateTime) }}
Width {{ $image->ImageExif->COMPUTED->Width }}
Length {{ $image->ImageExif->COMPUTED->Height }}
@endforeach @endforeach

Category Images

@foreach($categoryImages as $image) @php $image->ImageExif = json_decode($image->ImageExif); @endphp

Category Name: {{ $image->CategoryName }}
{{ $image->ImageName }}
Size {{ round($image->ImageExif->FileSize / 1000,2) }} Kb
Exif date {{ gmdate("d/m/Y", $image->ImageExif->FileDateTime) }}
Width {{ $image->ImageExif->COMPUTED->Width }}
Length {{ $image->ImageExif->COMPUTED->Height }}
@endforeach