@extends('layouts.app') @section('title') Dashboard @endsection @section('admin-content')

Edit Expense Up Country

@php $attachmentCategoryLabels = $attachmentCategoryLabels ?? ($upCountryAttachmentCategories ?? []); $attachmentCategories = $attachmentCategories ?? ($upCountryAttachmentCategoryKeys ?? array_keys($attachmentCategoryLabels)); @endphp
@csrf @method('PUT') @include('backend.layouts.partials.messages')

Pratinjau, unduh, atau hapus lampiran yang telah diunggah sebelumnya.

@forelse ($attachments as $attachment) @php $categoryValue = $attachment['file_category'] ?? null; $categoryLabel = $categoryValue ? ($attachmentCategoryLabels[$categoryValue] ?? ucwords(str_replace('_', ' ', $categoryValue))) : '-'; @endphp @empty @endforelse
Kategori Lampiran Nama File Pratinjau Unduh Aksi
{{ $categoryLabel }} {{ $attachment['filename'] ?? basename($attachment['file_path']) }} Unduh
Belum ada lampiran tersimpan.

Format file yang diperbolehkan: JPG, JPEG, PNG, atau PDF. Ukuran maksimum 5 MB per file.

Kategori Lampiran Lampiran Pratinjau Aksi
Belum ada lampiran baru.
@include('backend.components.attachment-preview-modal', [ 'modalId' => 'existingAttachmentPreviewModal', 'title' => 'Pratinjau Lampiran', ]) @include('backend.components.attachment-preview-modal', [ 'modalId' => 'newAttachmentPreviewModal', 'title' => 'Pratinjau Lampiran', ])

Sedang mengirim, mohon tunggu...

@endsection