@extends('layouts.app') @section('content')

Import Summary #{{ $batch->id }}

@if($batch->failed_rows > 0) Download Failed Rows (Excel) @endif Back
Total Rows
{{ $batch->total_rows }}
Inserted
{{ $batch->inserted_rows }}
Updated
{{ $batch->updated_rows }}
Failed
{{ $batch->failed_rows }}
File: {{ $batch->file_name }}
Tag: {{ $batch->tag }}
Source: {{ $batch->source }}
Import Mode: {{ $batch->import_mode }}
Dedupe Strategy: {{ $batch->dedupe_strategy }}
Uploaded By: {{ $batch->uploader?->name }}
Row-level Failures
@forelse($batch->failures as $failure) @empty @endforelse
Row #ErrorRaw Row JSON
{{ $failure->row_number }}{{ $failure->error_message }}{{ \Illuminate\Support\Str::limit($failure->raw_json, 250) }}
No failures
@endsection