Laravel eloquent Pass zum nächsten Element
$nextProdId = $this->items()->where('product_id', '>', $product->id)->min('product_id');
return Product::find($nextProdId);
Frail Fowl