$order = Order::where('uuid', $order_id) ->with(['client', 'service']) ->first();
This is the solution that worked for me.