requiredMapping() ->relationship(resolveUsing: 'name') ->exampleHeader('Plant') ->example(['Ransar Industries-I']) ->label('Plant') ->rules(['required']), ImportColumn::make('line') ->requiredMapping() ->relationship(resolveUsing: 'name') ->exampleHeader('Line') ->example(['4 inch pump line']) ->label('Line') ->rules(['required']), ImportColumn::make('name') ->requiredMapping() ->exampleHeader('Name') ->example(['1600251']) ->label('Line') ->rules(['required']), ]; } public function resolveRecord(): ?Machine { // return Machine::firstOrNew([ // // Update existing records, matching them by `$this->data['column_name']` // 'email' => $this->data['email'], // ]); return new Machine(); } public static function getCompletedNotificationBody(Import $import): string { $body = 'Your machine import has completed and ' . number_format($import->successful_rows) . ' ' . str('row')->plural($import->successful_rows) . ' imported.'; if ($failedRowsCount = $import->getFailedRowsCount()) { $body .= ' ' . number_format($failedRowsCount) . ' ' . str('row')->plural($failedRowsCount) . ' failed to import.'; } return $body; } }