formatAmount() public static method

Format the given amount into a displayable currency.
public static formatAmount ( integer $amount ) : string
$amount integer
return string
Esempio n. 1
0
 /**
  * Format the given amount into a string based on the user's preferences.
  *
  * @param  int  $amount
  * @return string
  */
 protected function formatAmount($amount)
 {
     return Cashier::formatAmount($amount);
 }