6
0
Fork 0
jiqu-library-server/app/Models/WalletLog.php

20 lines
340 B
PHP

<?php
namespace App\Models;
use App\Helpers\Numeric;
use Illuminate\Database\Eloquent\Model;
class WalletLog extends Model
{
/**
* 获取变动金额
*
* @return string
*/
public function getFeeFormatAttribute()
{
return Numeric::trimTrailingZero(bcdiv($this->attributes['fee'], 100, 2));
}
}