I\'m currently trying to seed my users table. If I try it like this with 2 rows, it fails. It works fine if I just use a single array instead of the 2 arrays inside the $users a
public function run() { // for ($i=0; $i < 1000; $i++) { DB::table('seo_contents')->insert([ 'title' => str_random(10), 'content' => str_random(100), 'created_at'=>date('Y-m-d H:i:s'), 'updated_at'=>date('Y-m-d H:i:s'), ]); } }