1//los signos de igualdad pueden ser: ">=", "<=", "=", ">", "<"
2$user = User::where("estado","=",1)->find(10);
1return Destination::orderByDesc(
2 Flight::select('arrived_at')
3 ->whereColumn('destination_id', 'destinations.id')
4 ->orderBy('arrived_at', 'desc')
5 ->limit(1)
6)->get();