@extends('layouts.admin') @section('title', 'AIR Jobs') @section('header', 'AIR Processing Jobs') @section('content') @if(isset($apiError))
{{ $apiError }}
| Fichier | Type | Statut | Progression | Duree | Insertions | Date | Actions |
|---|---|---|---|---|---|---|---|
| {{ $job['file_name'] ?? '-' }} | {{ $job['file_type'] ?? '-' }} | {{ $statusLabel }} | {{ $job['progress_percentage'] ?? 0 }}% | @if(isset($job['durations']['total_ms']) && $job['durations']['total_ms']) {{ number_format($job['durations']['total_ms'] / 1000, 2) }}s @else - @endif | {{ number_format($job['insertions']['total'] ?? 0) }} | {{ isset($job['created_at']) ? date('d/m/Y H:i', strtotime($job['created_at'])) : '-' }} | |
| {{ isset($apiError) ? 'API indisponible' : 'Aucun job AIR trouve' }} | |||||||