@extends('admin.layout') @section('title', 'Artist Bulk Upload') @section('content')

Admin Panel

Artist Bulk Upload

@if ($errors->any())
@endif
Upload File
@csrf
@if (!empty($summary))
Result Summary @if (!empty($rowErrors) && !empty($errorToken)) Download Error Excel @endif
Total Rows
{{ $summary['total_rows'] ?? 0 }}
Created
{{ $summary['created'] ?? 0 }}
Updated
{{ $summary['updated'] ?? 0 }}
Failed
{{ $summary['failed'] ?? 0 }}
@endif @if (!empty($rowErrors))
Failed Rows
@foreach($rowErrors as $errorRow) @endforeach
Row Name Status Email Username Reason
{{ $errorRow['row'] ?? '-' }} {{ $errorRow['name'] ?? '-' }} {{ $errorRow['status'] ?? '-' }} {{ $errorRow['email'] ?? '-' }} {{ $errorRow['username'] ?? '-' }} {{ $errorRow['reason'] ?? '-' }}
@endif
@endsection