insert([ 'name' => 'activo', 'created_at' => now(), 'updated_at' => now(), ]); DB::table('prospecto_status')->insert([ 'name' => 'aspirante', 'created_at' => now(), 'updated_at' => now(), ]); DB::table('prospecto_status')->insert([ 'name' => 'inscrito', 'created_at' => now(), 'updated_at' => now(), ]); DB::table('prospecto_status')->insert([ 'name' => 'baja', 'created_at' => now(), 'updated_at' => now(), ]); } }