Refactor image URLs to use MinIO storage for improved asset management

This commit is contained in:
Frank John Begornia
2026-04-02 03:04:49 +08:00
parent 005b64233b
commit bd8c7f02b5
15 changed files with 25 additions and 24 deletions

View File

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