/** * Run the database seeds. * * @return void */ public function run() { foreach (Slot::all() as $slot) { foreach (Recruiter::all() as $recruiter) { DB::table('interviews')->insert(['slot_id' => $slot->id, 'recruiter_id' => $recruiter->id]); } } }