@php( $headerOption = \App\Http\Controllers\Controller::getHeaderOptions( $title ?? '', $subTitle ?? '', isset($filters) ? $filters : [], isset($advancedFilters) ? $advancedFilters : [] ) ) @extends('admin.layouts.layout', $headerOption) @push('page_css') @endpush @section('content')

Lead Importer

{{-- Tab navigation --}}
{{-- STANDARD IMPORT --}}

Import Leads from CSV

{{-- Step indicator --}}
@foreach(['Upload File','Map Columns','Preview','Import'] as $i => $stepLabel)
{{ $i+1 }} {{ $stepLabel }}
@if($i < 3) @endif @endforeach
{{-- Step 1: Upload --}}

Drag & Drop to upload, or

Supported: CSV (max 10MB)

{{-- Step 2: Map Columns --}} {{-- Step 3: Preview --}} {{-- Step 4: Result --}}
{{-- Import History --}}

Import History

@forelse($importHistory ?? [] as $h) @empty @endforelse
DateFile NameTotalImportedSkippedErrorsStatus
{{ $h->created_at?->format('M d, Y H:i') }} {{ $h->file_name }} {{ $h->total_rows }} {{ $h->imported_count }} {{ $h->skipped_count }} {{ $h->error_count }} {{ ucfirst($h->status) }}
No import history yet.
{{-- RECORD SETS TAB --}}

Import Lead Record Sets

Upload a CSV file to import lead record set data.

Drag & Drop to upload, or

{{-- CUSTOM PROPS TAB --}}

Import Lead Custom Properties

Upload a CSV file to import custom property values for leads.

Drag & Drop to upload, or

@endsection @push('page_script') @endpush