mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Removed noisy import debugging, made nicer output
Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
parent
9d9ad86dd5
commit
e054fc1ef1
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue