@extends('layouts.app') @section('subtitle', 'Master Surat') @section('content_body') Tambah Jenis Surat No Kode Surat Nama Surat Status Terakhir Diubah Aksi @foreach($templates as $index => $template) {{ $index + 1 }} {{ $template->kode_surat }} {{ $template->nama_surat }} @if($template->status === 'aktif') Aktif @else Nonaktif @endif {{ $template->updated_at->translatedFormat('d M Y, H:i') }} WIB @php $isUsed = \App\Models\PengajuanSurat::where('jenis_surat_id', $template->id)->exists(); @endphp @csrf @method('DELETE') @endforeach @endsection @push('js') @endpush