38 lines
1.2 KiB
PHP
38 lines
1.2 KiB
PHP
@extends('layouts.main')
|
|
|
|
@section('breadcrumbs')
|
|
{{-- {{ Breadcrumbs::render(request()->route()->getName()) }}
|
|
--}}
|
|
Paparan
|
|
@endsection
|
|
@section('content')
|
|
@include('lpj::assetsku.includenya')
|
|
<div class="w-full grid gap-5 lg:gap-7.5 mx-auto">
|
|
@include('lpj::component.detail-jaminan', [
|
|
'backLink' => 'penilai.show',
|
|
'id' => $permohonan->id,
|
|
'title' => 'Paparan dokument',
|
|
])
|
|
@include('lpj::penilai.components.foto-lampiran')
|
|
|
|
|
|
<div class="card">
|
|
<div class="card-header uppercase">
|
|
Kertas Kerja
|
|
</div>
|
|
<div class="card-body flex items-center justify-between">
|
|
@php
|
|
$url = asset('storage/' . $penilai->kertas_kerja);
|
|
$fileName = basename($penilai->kertas_kerja);
|
|
@endphp
|
|
<button type="button" class="btn btn-primary" onclick="window.open('{{ $url }}', '_blank')">
|
|
<i class="ki-outline ki-cloud-download"></i>
|
|
Lihat Kertas Kerja</button>
|
|
|
|
<p class="text-2sm text-gray-700">{{ $fileName }}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|
|
|