Hi, there's nothing wrong with your query you just need to add ->first() or ->get() on the end to actually get the data like so...
//gets the first user where usuario_ad is danielad
Usuarios::where("usuario_ad","=",'danielad')->first();
//get all the records where usuario_ad is danielad
Usuarios::where("usuario_ad","=",'danielad')->get();