📭
{{ $search ? 'Tidak ada video dengan resi "'.$search.'"' : 'Belum ada video tersimpan' }}
Mulai rekam sekarang →
{{ $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)
@else
@endif
@endforeach
{{-- Pagination --}}
@if($packages->hasPages())
{{ $packages->links() }}
@endif