@extends('layouts.app') @section('title', __('Archived submissions')) @section('content')

{{ __('Archived submissions') }}

{{ __('These submissions are hidden from your main list. Restore one to bring it back.') }}

{{ __('Back to submissions') }}
@forelse($submissions as $s) @empty @endforelse
{{ __('Title') }} {{ __('File') }} {{ __('Status') }} {{ __('Archived') }} {{ __('Actions') }}
{{ $s->title }}
@if($s->note)
{{ $s->note }}
@endif
{{ $s->original_name }}
{{ $s->humanSize() }}
{{ $s->statusLabel() }} {{ $s->archived_at?->diffForHumans() }}
@csrf
{{ __('Nothing in your archive yet.') }}
{{ $submissions->links() }}
@endsection