Hi montes2012,
Try the following code:
DB::transaction(function(){
$id = Turn::where('estado','=',2)->where('servicio','=',2)->orderBy('id')->fist(); //or use take(), limit() functions...
Turn::where('id','=', $id)->update('estado',1);
});
Hope it helps you.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community