Пример #1
0
 public function short_format($value, $currency_id)
 {
     $currency = Currency::find($currency_id);
     if (!$currency) {
         return $value;
     }
     return $this->makeFormat('currency.' . $currency->code, $value, $currency->short_format);
 }