$data['symbol'], 'name' => $data['name'], 'meta_data' => json_encode([ 'country' => $data['country'], 'first_trade_year' => $data['first_trade_year'], 'sector' => $data['sector'], 'industry' => $data['industry'], ]), ]; $rowCount++; if ($rowCount % $chunkSize == 0) { DB::table('market_data')->insertOrIgnore($rows); $rows = []; } } catch (\Throwable $e) { throw new \Exception('Error: '.$e->getMessage()); } } } // final clean up if (! empty($rows)) { DB::table('market_data')->insertOrIgnore($rows); } // Close the CSV file fclose($handle); echo "\n > Imported $rowCount market data items successfully!"; } else { echo "Failed to open the CSV.\n"; } } }