I tried also to use this code:
$product = Capsule::table('tblproducts')
->join('tblpricing', 'tblproducts.id', '=', 'tblpricing.relid')
->where('tblpricing.type', '=', 'product')
->where('tblproducts.id', $PID)
->where('tblpricing.currency', 1)
->select('tblproducts.*', 'tblpricing.*')
->first();
$productname_translation = Capsule::table('tbldynamic_translations')
->where('related_id',$PID)
->where('language','russian')
->select('tbldynamic_translations.translation')
->get();
$ProductNameIRussian = $productname_translation[0]->translation;
Buy it is not correct. It is not product name in Russian.