@extends('layouts.app') @section('subtitle', 'Detail Arsip Surat') @section('content_body')
Nomor Surat: {{ $surat->nomor_surat }}
|
Pemohon: {{ $surat->pengajuanSurat->penduduk->nama_lengkap }}
|
Jenis Surat: {{ $surat->pengajuanSurat->jenisSurat->nama_surat }}
|
Status: @if (!$surat->file_scan_ttd) Menunggu Scan @else Surat Resmi @endif
Pratinjau Surat
@if (!$surat->file_scan_ttd) @else @php $extension = pathinfo($surat->file_scan_ttd, PATHINFO_EXTENSION); $isImage = in_array(strtolower($extension), ['jpg', 'jpeg', 'png']); $scanUrl = URL::signedRoute('surat.downloadScan', ['id' => $surat->id]); @endphp @if ($isImage)
Scan TTD Basah
@else @endif @endif
@if (!$surat->file_scan_ttd) @else Download Scan Surat Resmi @endif
@if (!$surat->file_scan_ttd) @endif
@endsection @section('css') @parent @stop @section('js') @parent @stop