The selectRaw method can be used in place of addSelect(DB::raw(...)). This method accepts an optional array of bindings as its second argument:
selectRaw
addSelect(DB::raw(...))
$orders = DB::table('orders') ->selectRaw('price * ? as price_with_tax', [1.0825]) ->get();