Removed noisy import debugging, made nicer output

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-05-31 02:15:24 +01:00
parent 9d9ad86dd5
commit e054fc1ef1

View file

@ -36,12 +36,11 @@
<th>{{ trans('general.error') }}</th>
</thead>
<tbody>
@php \Log::debug("import errors are: ".print_r($import_errors,true)); @endphp
@foreach($import_errors AS $key => $actual_import_errors)
@foreach($actual_import_errors AS $table => $error_bag)
@foreach($error_bag as $field => $error_list)
<tr>
<td>{{ $activeFile ?? "Unknown File" }}</td>
<td><b>{{ $key }}</b></td>
<td>
<b>{{ $field }}:</b>
<span>{{ implode(", ",$error_list) }}</span>