|
<?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));
|
|
}
|
|
}
|