我在控制器中有以下方法
public function artikel(){
$breadcrumb = array(
'Home' => URL::to('/'),
'Artikel' => ''
);
$this->layout->title = "Egoji";
$artikels = Posting::orderBy("created_at","desc")->where("postings.tipe","=","artikel")->paginate(5);
$this->layout->content = View::make("frontend.artikel.index",array("artikels"=>$artikels, 'breadcrumb'=>$breadcrumb))->render();
}
在视图中frontend.artikel.index
我正在尝试使用$artikels->shift()
取出第一个artikel。我得到了第一个artikel,但它没有从集合中删除,它仍然存在,当我循环其余。