sentence; $this->disableForeignKeys(); // $this->truncate('pages'); $page = [ [ 'title' => 'Terms and conditions', 'page_slug' => 'terms-and-conditions', 'description' => $faker->text($maxNbChars = 255), 'status' => '1', 'created_by' => '1', 'created_at' => Carbon::now(), 'updated_at' => Carbon::now(), ], ]; DB::table('pages')->insert($page); $this->enableForeignKeys(); } }