Updates user data display across multiple views to handle migrated data. Improves UI components by adding a detail location component and refining print layouts. Also, it fixes minor bugs and enhances data presentation in reports and forms.
18 lines
647 B
PHP
18 lines
647 B
PHP
@if (@isset($dokumen))
|
|
@foreach ($dokumen->detail as $detail)
|
|
{{-- @if (!empty($detail->name) && isset($detail->details) && !empty($detail->dokumen_jaminan))
|
|
<tr>
|
|
<td width="25%"><strong>{{ $detail->name ?? '' }}</strong></td>
|
|
</tr>
|
|
@endif --}}
|
|
@if ($detail->name != 'LOKASI JAMINAN')
|
|
@if (isset($detail->details))
|
|
@php
|
|
$details = json_decode($detail->details, true);
|
|
@endphp
|
|
@include('lpj::component.detail-lokasi', ['details' => $details])
|
|
@endif
|
|
@endif
|
|
@endforeach
|
|
@endif
|