How to render taxonomy in loop of custom post_type

try this code :

foreach ($terms as $term) {
   echo $term->name; 
   echo $term->slug;

   ...
   ... 
}