<?php use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { const CHUNK_SIZE = 100; /** * Seed the application's database. * * @return void */ public function run() { $this->call(GrupoDeCompraSeeder::class); $this->call(ImportarProductoSeeder::class); } }