{{ Form::select('activeFile.import_type', $importTypes, $activeFile->import_type, [
'id' => 'import_type',
'class' => 'livewire-select2',
'style' => 'min-width: 350px',
'data-placeholder' => 'Select an import type...', /* TODO: translate me */
'placeholder' => '', //needed so that the form-helper will put an empty option first
'data-livewire-component' => $_instance->id
]) }}
@if($statusText)
{{ $statusText }}
@endif
@if($activeFile->import_type)
Header Field
Import Field
Sample Value
@if($activeFile->header_row)
@foreach($activeFile->header_row AS $index => $header)
{{ Form::select('field_map.'.$index, $columnOptions[$activeFile->import_type], @$field_map[$index],
[
'class' => 'mappings livewire-select2',
'placeholder' => 'Do Not Import',
'data-livewire-component' => $_instance->id
],[
'-' => ['disabled' => true] // this makes the "-----" line unclickable
])
}}
{{ $activeFile->first_row[$index] }}
@endforeach
@else
No Columns Found!
@endif
@if($statusText)
{{ $statusText }}
@endif
@endif {{-- end of if ... activeFile->import_type --}}