@extends('layout.app') @section('content')
@if (session('showResults'))
Import Results
@if (session('wasRolledBack'))

Due to errors in the import file, the entire import was cancelled and NO records were saved. Please fix all errors and try again.

@endif
Successfully Imported: {{ session('successCount', 0) }} records
Errors Found: {{ count(session('importErrors', [])) }} issues
@if (!empty(session('importErrors')))
Error Details:
    @foreach (session('importErrors', []) as $error)
  • {{ $error }}
  • @endforeach

@if (session('wasRolledBack')) Please fix ALL errors in your Excel file and try importing again. The import uses an "all or nothing" approach - if any row has errors, no records will be saved. @else Please fix the errors in your Excel file and try importing again. Only the rows with errors were skipped. @endif

@endif
@endif
@csrf

Customer Import From Excel


1st Download The Excel File. Fillup the column carefully. Where( * ) Marked Column is Mandatory

Please do not delete first row or header row.


@can('client-due-import-to-customer')
@csrf

Customer Due Import From Excel


1st Download The Excel File. Fillup the column carefully. Where( * ) Marked Column is Mandatory

Please do not delete first row or header row.


@endcan
@endsection