34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumbs')
|
|
{{ Breadcrumbs::render(request()->route()->getName()) }}
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="w-full grid gap-5 lg:gap-7.5 mx-auto">
|
|
@if (Auth::user()->hasAnyRole(['senior-officer']))
|
|
@include('lpj::component.detail-jaminan', [
|
|
'backLink' => 'otorisator.view-laporan',
|
|
'queryParams' => [
|
|
'permohonanId' => request()->query('permohonanId'),
|
|
'documentId' => request()->query('documentId'),
|
|
'inspeksiId' => request()->query('inspeksiId'),
|
|
'jaminanId' => request()->query('jaminanId'),
|
|
'statusLpj' => 1,
|
|
],
|
|
'title' => 'Paparan dokument',
|
|
])
|
|
|
|
|
|
@else
|
|
@include('lpj::component.detail-jaminan', [
|
|
'backLink' => 'penilai.show',
|
|
'id' => $permohonan->id,
|
|
'title' => 'Lampiran foto dan dokument',
|
|
])
|
|
@endif
|
|
|
|
@include('lpj::penilai.components.foto-lampiran')
|
|
</div>
|
|
@endsection
|