I'm creating a API in Lumen framework, using Eloquent ORM to acess my databases. I've already used Factories and Models to generate random rows in my table.
What I want know is to generate real data, default values if my table is empty. I'll have a units
table, to store possible unit values (Kilograms, piece, liters etc). I've created a migration class to create the table, but I'd like to create this table with some default rows , so it's not created empty. They will not be random, they will be the real values the user will access, even in production. They can be changed afterwards, but I'd like the system to initialize with these values.