Generate a new Laravel database seed file based on data from the existing database table.
creative-collisions-limited/iseed is a Laravel package for generate a new laravel database seed file based on data from the existing database table..
It currently has 0 GitHub stars and 3.374 downloads on Packagist (latest version v3.0.4).
Install it with composer require creative-collisions-limited/iseed.
Discover more Laravel packages by creative-collisions-limited
or browse all Laravel packages to compare alternatives.
Last updated
Inverse seed generator (iSeed) is a Laravel Lumen package that provides a method to generate a new seed file based on data from the existing database table. This project is based on orangehill/iseed, all credits to them.
composer require creative-collisions-limited/iseed
// '/bootstrap/app.php'
$app->register(CreativeCollisionsLimited\Iseed\IseedServiceProvider::class);
Mandatory parameter which defines which table/s will be used for seed creation. Use CSV notation for multiple tables. Seed file will be generated for each table.
Examples:
php artisan iseed my_table
php artisan iseed my_table,another_table