@extends('layouts.admin') @section('title', 'Archive log') @section('content') Back to audit log @if ($errors->any()) @endif

Private archive

Add archive record

{{ __('ui.archive.create_description') }}

@csrf
Maximum size: 50 MB. Files are stored outside the public website.

Protected records

Manual archive records

{{ __('ui.archive.records_description') }}

@forelse ($records as $record) @empty @endforelse
CreatedTitle and notesAttachmentCreated by
{{ $record->title }} @if ($record->description)

{{ $record->description }}

@endif
@if ($record->storage_path)
{{ $record->original_name }} {{ number_format(($record->file_size ?? 0) / 1024, 1) }} KB
{{ __('ui.archive.download') }}
@csrf @method('DELETE')
@else No file @endif
{{ $record->creator?->name ?? 'Deleted administrator' }}@if($record->creator)
{{ $record->creator->email }}@endif
No manual archive records yet.
{{ $records->links() }}
@endsection