donglu953744 2017-09-12 23:49
浏览 266
已采纳

如何从foreach中获取唯一值

I am trying to get unique values in a drop down list. Code for drop down is:

@foreach($admin_bills as $admin_bill)
   <?php $month = date('M, Y', strtotime($admin_bill->created_at)); ?>
   <option value="{{ $admin_bill->id }}">{{ $month }}</option>
@endforeach

This gives me all the values based on created_at. For example, if there are multiple entries on same month, it gives me results like

Aug, 2017
Aug, 2017
Aug, 2017
Sep, 2017
Sep, 2017

But if there are multiple entries on same month, I want them to show once in the drop down. So the result will be like:

Aug, 2017
Sep, 2017

I cannot simply use function like array_unique() here and the $admin_bill->id should get the first id of unique $month. How can I do that? Please help. I am using Laravel 5.4

Thank you.

  • 写回答

4条回答 默认 最新

  • douzhui8531 2017-09-13 00:00
    关注

    It is recommended that you solve this in the controller. Not in the view. In the controller you can write something like the following:

    $admin_bills->pluck('created_at')->map->format('M, Y')->distinct();
    

    I didn't test this but I think it will get you in the right direction.

    I am assuming that the created_at property is automatically parsed to a carbon object. Because that is the way Laravel normally works.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(3条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部