I am trying to add tab space to php function. i have try using multiple white spaces, '\t' but both are not working
this is my function
public function getProductDescription()
{
return $this->name."\t". $this->carton_quantity .' * '. $this->weight.' g';
}