@extends('admin.layout') @section('title', 'Batch Logs — Bulk Thumbnail') @section('content')
{{-- Batch Info --}}| # | Video | Status | Thumbnail | Error | Duration | Time |
|---|---|---|---|---|---|---|
| {{ $log->id }} |
{{ Str::limit($log->video_title, 50) }}
ID: {{ $log->video_id }}
|
@switch($log->status) @case('success') ✅ success @break @case('failed') ❌ failed @break @case('skipped') ⏭ skipped @break @case('processing') ⚙️ processing @break @default pending @endswitch |
@if($log->thumbnail_path)
{{ Str::limit($log->thumbnail_path, 30) }}
@else
—
@endif
|
@if($log->error_message) {{ Str::limit($log->error_message, 50) }} @else — @endif | @if($log->duration_ms) {{ number_format($log->duration_ms) }}ms @else — @endif | {{ $log->updated_at->format('H:i:s') }} |
| Belum ada log. | ||||||