{{-- TOP BAR --}}
ResiCam · Video Saya
← Kembali ke Packing
@csrf
{{-- HEADER --}}

📹 Video Saya

Semua video packing yang kamu rekam

@if(session('success'))
✓ {{ session('success') }}
@endif {{-- SEARCH --}}
@if($search) Reset @endif
{{-- VIDEO LIST --}} @if($packages->isEmpty())
📭

{{ $search ? 'Tidak ada video dengan resi "'.$search.'"' : 'Belum ada video tersimpan' }}

Mulai rekam sekarang →
@else
{{ $packages->total() }} video ditemukan Diurutkan terbaru
@foreach($packages as $package) @php $video = $package->video; @endphp
{{-- Icon --}}
{{-- Info --}}
{{ $package->resi_number }}
{{ $package->packed_at?->format('d M Y, H:i') ?? '-' }} @if($video) · {{ gmdate('i:s', $video->duration_seconds) }} · {{ $video->fileSizeFormatted() }} @endif @if($package->operator) · {{ $package->operator->name }} @endif
{{-- Status badge --}}
{{ $video ? '✓ Tersimpan' : '⏳ Proses' }}
{{-- Download + Delete buttons --}} @if($video)
@csrf @method('DELETE')
@else
@endif
@endforeach
{{-- Pagination --}} @if($packages->hasPages())
{{ $packages->links() }}
@endif
@endif