{{-- resources/views/import/preview.blade.php --}} @extends('layouts.app') @section('title', 'Предпросмотр импорта') @section('content')

Предпросмотр (первые 10 строк)

@foreach($headers as $index => $header) @endforeach @foreach($rows as $rowIndex => $row) @foreach($row as $cell) @endforeach @endforeach
#{{ $header ?: 'Колонка '.$index }}
{{ $rowIndex + 1 }}{{ Str::limit($cell, 50) }}

Сопоставление полей

@csrf @foreach($fields as $key => $field) @endforeach
Поле в БД Название Колонка из CSV
{{ $key }} {{ $field['label'] }} @if(isset($field['required']) && $field['required']) * @endif
Отмена
@endsection