Update image sources to use MinIO for thumbnail display
All checks were successful
Deploy Production (admin.crewsportswear.app) / deploy (push) Successful in 3m7s

This commit is contained in:
Frank John Begornia
2026-04-02 03:12:44 +08:00
parent b8d349f35d
commit f7d9759aae
3 changed files with 3 additions and 3 deletions

View File

@@ -442,7 +442,7 @@
<td align="left" style="width: 180px;">
@foreach($img_thumb as $img)
@if($img->ProductId == $item->ProductId)
<img style="height: 150px; overflow: hidden; object-fit: contain;" src="{{ config('site_config.prod_private_server_ip') }}:5955/{{ $img->Image }}">
<img style="height: 150px; overflow: hidden; object-fit: contain;" src="{{ minio_url('images/' . $img->Image) }}">
<!-- <img class="previewImage" src="http://{{ config('site_config.prod_private_server_ip') }}/images/{{ $img->Image }}"> -->
@endif
@endforeach