updateOrInsert( ['id' => 1], [ 'descripcion' => 'Activo', 'created_at' => now(), 'updated_at' => now(), ] ); DB::table('bajas')->updateOrInsert( ['id' => 2], [ 'descripcion' => 'Baja', 'created_at' => now(), 'updated_at' => now(), ] ); } }