1. Go to this page and download the library: Download orangehill/iseed library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?phprequire_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
// File: /database/seeds/DatabaseSeeder.phpclassDatabaseSeederextendsSeeder{
/**
* Run the database seeds.
*
* @return void
*/publicfunctionrun(){
Eloquent::unguard();
if(App::environment() == "local")
{
thrownew \Exception('Only run this from production');
}
#iseed_start// here all the calls for newly generated seeds will be stored.#iseed_end
}
}