{{ $record->title }}

@isset($breadcrumbs) @endisset Edit Credentials

Data Mapping

Configure and manage the import and synchronization of your NetSuite data on this page. All record types come pre-mapped with essential fields, allowing you to seamlessly align SuiteX fields with NetSuite field IDs. Customize these mappings to fit your specific needs and ensure accurate data integration.

@foreach($recordTypes as $groupTitle => $group) {{-- {{ dd($recordTypes) }} --}}
Data Group
{{ $groupTitle }}
    @foreach($group as $groupItem) @php $mapping = $mappings->firstWhere('recordType.recordType', $groupItem->recordType ?? ''); @endphp
  • {{ $groupItem ? Illuminate\Support\Str::plural($groupItem->title) : 'Unknown' }}
    @if ($mapping) Edit Data Mapping @else
    @csrf
    @endif
    @if ($mapping) @if ($mapping->date_range)
    Records created on or after {{ \Carbon\Carbon::parse($mapping->date_start)->format('F jS, Y') }}, will be imported.
    @endif @endif
  • @endforeach
@endforeach