<?php use Illuminate\Database\Seeder; class DatabaseSeeder extends Seeder { /** * Seed the application's database. * * @return void */ public function run() { $this->call(UserAddressSeeder::class); // $this->call(UserSeeder::class); // $this->call(InquirySeeder::class); // $this->call(InquiryItemsSeeder::class); } }