insert([ 'thread_title' => $title, 'thread_creator_id' => $creator ]); }*/ DB::table('threads')->insert([ 'thread_title' => "Welcome to GameGab!", 'thread_creator_id' => 1, 'created_at' => date('Y-m-d H:i:s') ]); DB::table('threads')->insert([ 'thread_title' => "Is everyone who plays Fortnite 12 years old?", 'thread_creator_id' => 2, 'created_at' => date('Y-m-d H:i:s') ]); DB::table('threads')->insert([ 'thread_title' => "WHY ARE THERE SO MANY ASSASSIN'S CREED GAMES", 'thread_creator_id' => 3, 'created_at' => date('Y-m-d H:i:s') ]); } }