Configuration-driven ETL & Data Import Framework
"Stop writing spaghetti code for imports.
Laravel Ingest is a robust, configuration-driven ETL (Extract, Transform, Load) framework for Laravel. It replaces fragile, procedural import scripts with elegant, declarative configuration classes.
Whether you are importing 100 rows or 10 million, Laravel Ingest handles the heavy lifting: streaming, chunking, queueing, validation, relationships, and error reporting."
- βΎοΈ Infinite Scalability: Uses Generators and Queues to process files of any size with flat memory usage.
- π Declarative Syntax: Define what to import, not how to loop over it.
- π§ͺ Dry Runs: Simulate imports to find validation errors without touching the database.
- π Auto-Relations: Automatically resolves BelongsTo and BelongsToMany relationships (e.g., finding IDs by names).
- π‘οΈ Robust Error Handling: Tracks every failed row and allows you to download a CSV of only the failures to fix and retry.
- π API & CLI Ready: Comes with auto-generated API endpoints and Artisan commands.