@extends('vendor.layouts.app') @section('content')
{{ __('Your import found following issues') }}


{{ __('Total imported row') }} : {{ $totalRow }}

{{ __('Total inserted row') }} : {{ $totalRow - count($errorMessages) }}

@foreach ($errorMessages as $key => $value) @endforeach
{{ __('Column No') }} {{ __('Column Data') }} {{ __('Errors') }}
{{ $key + 1 }} @foreach ($value['data'] as $k => $val)

{{ $k }} : {{ $val }}

@endforeach
@foreach ($value['fails'] as $msg)

{{ $msg }}

@endforeach
@endsection