-
@foreach($report as $key => $val)
@if(!empty($val['error']))
-
Row {{ $key }}: {!! $val['info'] !!}
@if(is_array($val['error']) || is_object($val['error'])) @foreach($val['error'] as $col => $issues) @foreach($issues as $k => $description) {!! $description !!}. @endforeach @endforeach @elseif(is_string($val['error'])) {!! $val['error'] !!} @endif
@endif
@endforeach