@extends('layouts.app') @section('title', 'Import Quotes - Map & Import') @section('content')

Quotes - Map Fields

1 Configure
2 Map Fields
3 Preview
@csrf

{{ $totalRecords }}

Total Records Found

{{ $totalRecords }}

Ready to Import

0

Invalid Records

Map Your Fields
@foreach($fields as $groupName => $groupFields) @foreach($groupFields as $id => $label) @endforeach @endforeach
System Field Imported Column
{{ $groupName }}
{{ $label }} @if(isset($fields['Required Fields'][$id])) * @endif
Data Preview (First 5 Rows)
@foreach(array_slice($headers, 0, 4) as $header) @endforeach @if(count($headers) > 4) @endif @foreach($sampleRows as $row) @foreach(array_slice($row, 0, 4) as $cell) @endforeach @if(count($row) > 4) @endif @endforeach
{{ $header }}...
{{ $cell ?: '-' }}...

Ensure mandatory fields are correctly mapped for a successful import.

Previous
@endsection