diff --git a/app/Abstracts/Import.php b/app/Abstracts/Import.php index 66f5edefa..a84907497 100644 --- a/app/Abstracts/Import.php +++ b/app/Abstracts/Import.php @@ -2,7 +2,7 @@ namespace App\Abstracts; -use App\Traits\Import as ImportHelpers; +use App\Traits\Import as ImportHelper; use Illuminate\Support\Str; use Jenssegers\Date\Date; use Maatwebsite\Excel\Concerns\Importable; @@ -18,7 +18,7 @@ use Maatwebsite\Excel\Validators\Failure; abstract class Import implements ToModel, SkipsOnError, SkipsOnFailure, WithBatchInserts, WithChunkReading, WithHeadingRow, WithMapping, WithValidation { - use Importable, ImportHelpers; + use Importable, ImportHelper; public $empty_field = 'empty---';