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

Edit Expense Up Country

@csrf @method('PUT') @include('backend.layouts.partials.messages')

Preview, download, or delete attachments that were previously uploaded.

@forelse ($attachments as $attachment) @php $categoryValue = $attachment['file_category'] ?? null; $categoryLabel = $categoryValue ? ucwords(str_replace('_', ' ', $categoryValue)) : '-'; @endphp @empty @endforelse
File Category Filename Preview Download Action
{{ $categoryLabel }} {{ $attachment['filename'] ?? basename($attachment['file_path']) }} Download
Belum ada lampiran tersimpan.

Allowed files: JPG, JPEG, PNG, PDF. Max size 5 MB per file.

File Category Attachment Preview Action
Belum ada lampiran baru.
@include('backend.components.attachment-preview-modal', [ 'modalId' => 'existingAttachmentPreviewModal', 'title' => 'Attachment Preview', ]) @include('backend.components.attachment-preview-modal', [ 'modalId' => 'newAttachmentPreviewModal', 'title' => 'Attachment Preview', ])

Submitting, please wait...

@endsection