Define a custom iSeed template location in DatabaseSeeder
masterBy default, iSeed adds calls to newly generated seeders into DatabaseSeeder.php. You can control exactly where these calls are placed by wrapping a section in your DatabaseSeeder.php with #iseed_start and #iseed_end markers.
public function run()
{
#iseed_start
// All iSeed generated seeder calls will be placed here.
#iseed_end
}