perbaikan foto dan penambahan basic data foto objek jaminan, print-out
This commit is contained in:
@@ -1,24 +1,45 @@
|
||||
<div>
|
||||
@if (isset($formFoto['rute_menuju_lokasi']))
|
||||
@foreach ($formFoto['rute_menuju_lokasi'] as $item)
|
||||
@if (isset($formFoto['rute_menuju_lokasi']['rute_menuju_lokasi']))
|
||||
@foreach ($formFoto['rute_menuju_lokasi']['rute_menuju_lokasi'][0] as $index => $item)
|
||||
<div class="border photo-item">
|
||||
<h2 class="text-gray-600 font-semibold text-xl">
|
||||
{{ $item['name_rute'] . ' ' . $loop->index + 1 }}
|
||||
{{ $item['name'] . ' ' . $loop->index + 1 }}
|
||||
</h2>
|
||||
|
||||
@php
|
||||
$imagePath = $statusLpj
|
||||
? asset('storage/' . $item['foto_rute'])
|
||||
: storage_path('app/public/' . $item['foto_rute']);
|
||||
? asset('storage/' . $item['path'])
|
||||
: storage_path('app/public/' . $item['path']);
|
||||
@endphp
|
||||
|
||||
@if ($statusLpj || file_exists(storage_path('app/public/' . $item['foto_rute'])))
|
||||
<img src="{{ $imagePath }}" alt="{{ $item['foto_rute'] }}" class="photo-image">
|
||||
@if ($statusLpj || file_exists(storage_path('app/public/' . $item['path'])))
|
||||
<img src="{{ $imagePath }}" alt="{{ $item['path'] }}" class="photo-image">
|
||||
@endif
|
||||
</div>
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
@if (isset($formFoto['foto_rute_lainnya']))
|
||||
@foreach ($formFoto['foto_rute_lainnya'] as $index => $item)
|
||||
<div class="border photo-item">
|
||||
<h2 class="text-gray-600 font-semibold text-xl">
|
||||
{{ $item['name_rute_lainnya'] }}
|
||||
</h2>
|
||||
|
||||
@php
|
||||
$imagePath = $statusLpj
|
||||
? asset('storage/' . $item['foto_rute_lainnya'])
|
||||
: storage_path('app/public/' . $item['foto_rute_lainnya']);
|
||||
@endphp
|
||||
|
||||
@if ($statusLpj || file_exists(storage_path('app/public/' . $item['foto_rute_lainnya'])))
|
||||
<img src="{{ $imagePath }}" alt="{{ $item['foto_rute_lainnya'] }}" class="photo-image">
|
||||
@endif
|
||||
</div>
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
|
||||
@if (isset($formFoto['object_jaminan']))
|
||||
@foreach ($formFoto['object_jaminan'] as $item)
|
||||
<div class="border photo-item">
|
||||
@@ -39,6 +60,49 @@
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
|
||||
@if (isset($formFoto['foto_lantai_unit']))
|
||||
@foreach ($formFoto['foto_lantai_unit'] as $index => $floorPhotos)
|
||||
@foreach ($floorPhotos as $index => $item)
|
||||
<div class="border photo-item">
|
||||
<h2 class="text-gray-600 font-semibold text-xl">
|
||||
{{ $item['name'] ?? 'Foto Lantai ' . $floorNumber . ' - ' . ($index + 1) }}
|
||||
</h2>
|
||||
|
||||
@php
|
||||
$imagePath = $statusLpj
|
||||
? asset('storage/' . $item['path'])
|
||||
: storage_path('app/public/' . $item['path']);
|
||||
@endphp
|
||||
|
||||
@if ($statusLpj || file_exists(storage_path('app/public/' . $item['path'])))
|
||||
<img src="{{ $imagePath }}" alt="{{ $item['path'] }}" class="photo-image">
|
||||
@endif
|
||||
</div>
|
||||
@endforeach
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
@if (isset($formFoto['foto_lingkungan']['foto_lingkungan']))
|
||||
@foreach ($formFoto['foto_lingkungan']['foto_lingkungan'][0] as $index => $item)
|
||||
<div class="border photo-item">
|
||||
<h2 class="text-gray-600 font-semibold text-xl">
|
||||
{{ $item['name'] . ' ' . $loop->index + 1 }}
|
||||
</h2>
|
||||
|
||||
@php
|
||||
$imagePath = $statusLpj
|
||||
? asset('storage/' . $item['path'])
|
||||
: storage_path('app/public/' . $item['path']);
|
||||
@endphp
|
||||
|
||||
@if ($statusLpj || file_exists(storage_path('app/public/' . $item['path'])))
|
||||
<img src="{{ $imagePath }}" alt="{{ $item['path'] }}" class="photo-image">
|
||||
@endif
|
||||
</div>
|
||||
@endforeach
|
||||
@endif
|
||||
|
||||
@if (isset($formFoto['foto_basement']))
|
||||
<div class="border photo-item">
|
||||
<h2 class="text-gray-600 font-semibold text-xl">
|
||||
|
||||
Reference in New Issue
Block a user