1: <?php 2: 3: class DatabaseSeeder extends Seeder { 4: 5: /** 6: * Run the database seeds. 7: * 8: * @return void 9: */ 10: public function run() 11: { 12: $this->call('ProductsSeeder'); 13: $this->command->info('Products table seeded.'); 14: } 15: 16: }