• <tfoot id='oK2Sp'></tfoot>
  • <i id='oK2Sp'><tr id='oK2Sp'><dt id='oK2Sp'><q id='oK2Sp'><span id='oK2Sp'><b id='oK2Sp'><form id='oK2Sp'><ins id='oK2Sp'></ins><ul id='oK2Sp'></ul><sub id='oK2Sp'></sub></form><legend id='oK2Sp'></legend><bdo id='oK2Sp'><pre id='oK2Sp'><center id='oK2Sp'></center></pre></bdo></b><th id='oK2Sp'></th></span></q></dt></tr></i><div id='oK2Sp'><tfoot id='oK2Sp'></tfoot><dl id='oK2Sp'><fieldset id='oK2Sp'></fieldset></dl></div>
  • <legend id='oK2Sp'><style id='oK2Sp'><dir id='oK2Sp'><q id='oK2Sp'></q></dir></style></legend>

    <small id='oK2Sp'></small><noframes id='oK2Sp'>

      • <bdo id='oK2Sp'></bdo><ul id='oK2Sp'></ul>

      1. 如何从laravel eloquent unique中删除索引号

        时间:2023-09-22
          <bdo id='8Pznj'></bdo><ul id='8Pznj'></ul>

          1. <small id='8Pznj'></small><noframes id='8Pznj'>

            <tfoot id='8Pznj'></tfoot>
              <tbody id='8Pznj'></tbody>

                  <i id='8Pznj'><tr id='8Pznj'><dt id='8Pznj'><q id='8Pznj'><span id='8Pznj'><b id='8Pznj'><form id='8Pznj'><ins id='8Pznj'></ins><ul id='8Pznj'></ul><sub id='8Pznj'></sub></form><legend id='8Pznj'></legend><bdo id='8Pznj'><pre id='8Pznj'><center id='8Pznj'></center></pre></bdo></b><th id='8Pznj'></th></span></q></dt></tr></i><div id='8Pznj'><tfoot id='8Pznj'></tfoot><dl id='8Pznj'><fieldset id='8Pznj'></fieldset></dl></div>
                  <legend id='8Pznj'><style id='8Pznj'><dir id='8Pznj'><q id='8Pznj'></q></dir></style></legend>
                  本文介绍了如何从laravel eloquent unique中删除索引号的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用一个可以完美返回值的查询,但它向集合中添加了键号.如何删除索引号?

                  I am using a query that returns value perfectly but it adds key number to the collection. How can I remove the index number?

                  这是检索到的数据

                  {
                  "data": {
                      "0": {
                          "id": 135,
                          "conversation_id": 11,
                          "last_sender": null,
                          "last_reciever": {
                              "id": 54,
                              "userName": "Sadek",
                              "profilePic": "Nir7zgorNT2dmwcXJdhNK3ZmPAltmkEnj0SXDCDC.png",
                              "firstName": "Sadek",
                              "lastName": "Hossain"
                          },
                          "msg": "hello guys how are you",
                          "attachment": null,
                          "deleted": 0,
                          "seen": 0,
                          "created_at": "2017-10-17 16:56:41",
                          "updated_at": "2017-10-17 16:56:41"
                      },
                      "2": {
                          "id": 133,
                          "conversation_id": 13,
                          "last_sender": null,
                          "last_reciever": {
                              "id": 55,
                              "userName": "buyer",
                              "profilePic": "pRBDBFJW55baSnF560Ajid8jTgPo5kmg4i5LMhPG.jpeg",
                              "firstName": "Matti",
                              "lastName": "Rames"
                          },
                          "msg": "second message 2 to user second",
                          "attachment": null,
                          "deleted": 0,
                          "seen": 0,
                          "created_at": "2017-10-17 15:43:14",
                          "updated_at": "2017-10-17 15:43:14"
                      }
                  }
                  

                  }

                  但我想返回这样的结果

                  {
                  "data": [
                      {
                          "id": 133,
                          "conversation_id": 13,
                          "last_sender": null,
                          "last_reciever": {
                              "id": 55,
                              "userName": "buyer",
                              "profilePic": "pRBDBFJW55baSnF560Ajid8jTgPo5kmg4i5LMhPG.jpeg",
                              "firstName": "Matti",
                              "lastName": "Rames"
                          },
                          "msg": "second message 2 to user second",
                          "attachment": null,
                          "deleted": 0,
                          "seen": 0,
                          "created_at": "2017-10-17 15:43:14",
                          "updated_at": "2017-10-17 15:43:14"
                      },
                      {
                          "id": 135,
                          "conversation_id": 11,
                          "last_sender": null,
                          "last_reciever": {
                              "id": 54,
                              "userName": "Sadek",
                              "profilePic": "Nir7zgorNT2dmwcXJdhNK3ZmPAltmkEnj0SXDCDC.png",
                              "firstName": "Sadek",
                              "lastName": "Hossain"
                          },
                          "msg": "hello guys how are you",
                          "attachment": null,
                          "deleted": 0,
                          "seen": 0,
                          "created_at": "2017-10-17 16:56:41",
                          "updated_at": "2017-10-17 16:56:41"
                      }
                  ]
                  

                  }

                  我的查询是(我认为重要的最后几部分)

                  My query is (last few parts that I think is important)

                  ->orderBy('created_at', 'desc') 
                  ->get()
                  ->unique('conversation_id');
                  

                  请告诉我如何从该集合中删除0"和2".

                  Please tell me how can I remove "0" and "2" from this collection.

                  推荐答案

                  必须手动操作

                     $users=AppUser::get()->toArray(); // your query here 
                     $data['data']=[];
                     foreach($users as $user ){ 
                           $data['data'][]=$user; 
                      }
                     $k=json_encode($data); dd($k);
                  

                  这篇关于如何从laravel eloquent unique中删除索引号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:循环遍历集合-Laravel 下一篇:L5.6 - 数据透视表的关系

                  相关文章

                  最新文章

                    1. <i id='8G8Qy'><tr id='8G8Qy'><dt id='8G8Qy'><q id='8G8Qy'><span id='8G8Qy'><b id='8G8Qy'><form id='8G8Qy'><ins id='8G8Qy'></ins><ul id='8G8Qy'></ul><sub id='8G8Qy'></sub></form><legend id='8G8Qy'></legend><bdo id='8G8Qy'><pre id='8G8Qy'><center id='8G8Qy'></center></pre></bdo></b><th id='8G8Qy'></th></span></q></dt></tr></i><div id='8G8Qy'><tfoot id='8G8Qy'></tfoot><dl id='8G8Qy'><fieldset id='8G8Qy'></fieldset></dl></div>

                      • <bdo id='8G8Qy'></bdo><ul id='8G8Qy'></ul>
                      <tfoot id='8G8Qy'></tfoot><legend id='8G8Qy'><style id='8G8Qy'><dir id='8G8Qy'><q id='8G8Qy'></q></dir></style></legend>

                      <small id='8G8Qy'></small><noframes id='8G8Qy'>