@extends('admin.layout')
@section('title', 'Artist Bulk Upload')
@section('content')
Admin Panel
Artist Bulk Upload
@if ($errors->any())
@foreach ($errors->all() as $error)
- {{ $error }}
@endforeach
@endif
@if (!empty($summary))
Total Rows
{{ $summary['total_rows'] ?? 0 }}
Created
{{ $summary['created'] ?? 0 }}
Updated
{{ $summary['updated'] ?? 0 }}
Failed
{{ $summary['failed'] ?? 0 }}
@endif
@if (!empty($rowErrors))
Failed Rows
| Row |
Name |
Status |
Email |
Username |
Reason |
@foreach($rowErrors as $errorRow)
| {{ $errorRow['row'] ?? '-' }} |
{{ $errorRow['name'] ?? '-' }} |
{{ $errorRow['status'] ?? '-' }} |
{{ $errorRow['email'] ?? '-' }} |
{{ $errorRow['username'] ?? '-' }} |
{{ $errorRow['reason'] ?? '-' }} |
@endforeach
@endif
@endsection