@extends('admin.layout') @section('content')

Import Job #{{ $job->id }}

Name
{{ $job->name }}
Status
{{ $job->status }}
Counts
Imported: {{ $job->imported }} — Skipped: {{ $job->skipped }} — Errors: {{ $job->errors }}
Report
@if($job->report_path) Download Report @endif
Log
@if($job->log_path) View Log @endif
Message
{{ $job->message }}
Created
{{ $job->created_at }}
Back @if($job->status === 'running')
@csrf
@endif
@endsection