7

我正在循环通过排序的 Laravel 集合created_at来制作时间线。每个项目的开始日期是created_at,结束日期是created_at以下项目的 。如果是最后一项,则该事件仅持续一组 30 天。

我目前的代码是这样的:

@foreach ($statushistory->where('itemid', $timelineitemid) as $hist)
    [ '{{$hist->newstatus}}', new Date({{$hist->created_at->format('Y')}}, {{$hist->created_at->format('n')-1}}, {{$hist->created_at->format('j')}}), new Date({{$hist->created_at->format('Y')}}, {{$hist->created_at->format('n')-1}}, {{$hist->created_at->format('j')}}) ],
@endforeach

正如您在此处看到的,结束日期与开始日期相同,但我需要它作为下一个项目的开始日期。我认为会有一个帮手,比如last()我可以调用的集合之类的next()。由于没有数字键,我不能只是添加一个并抓住它。该项目按日期排序,唯一的 ID 类型字段是数据库中的一个,它是一个随机 ID,如 1434 或 1356。

关于如何获取下一项的 start_date 并检查我们是否在最后一项的任何想法?我查看了 PHP 的next功能,但我认为它不能满足我的需要。

非常感谢

4

2 回答 2

6

你必须先得到迭代器:

$collection = $collection->getIterator();
$current = current($collection);
$next = next($collection);
于 2017-05-30T15:38:20.763 回答
4

该集合将由一个递增的索引作为键,因此您应该能够...

$collection = $statushistory->where('itemid', $timelineitemid);

foreach ($collection->values() as $index=>$hist){
      //stuff here
      $next =$collection->get(++$index) ;  
 } 

刀片语法显然有点不同,但希望能说明这个想法

于 2016-01-31T13:37:37.740 回答