在我的功能测试中,我试图添加一些特定时间的日期,然后我试图获得确切的时差。目前它的四舍五入到最高水平所以在这种情况下几个月。
特征测试
$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);
}