试图为Laravel Carbon实例格式化diffForHumans

时间:2016-12-21 19:50:29

标签: laravel laravel-5.2 php-carbon

在我的功能测试中,我试图添加一些特定时间的日期,然后我试图获得确切的时差。目前它的四舍五入到最高水平所以在这种情况下几个月。

特征测试

$title->champions()->attach([$champion1->id => ['champion_from' => Carbon::create(2016, 6), 'champion_to' => Carbon::create(2016, 7, 26)]]);

模型

public function getLengthOfTitleReignAttribute()
{
    return Carbon::parse($this->pivot->champion_from)->diffForHumans(Carbon::parse($this->pivot->champion_to), true);
}

0 个答案:

没有答案