How to search for a value in array of objects and get it in Laravel? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience Should we burninate the [wrap] tag? The Ask Question Wizard is Live!How do I check if an array includes an object in JavaScript?How to append something to an array?How to insert an item into an array at a specific index (JavaScript)?How do I determine whether an array contains a particular value in Java?Sort array of objects by string property valueHow do I empty an array in JavaScript?Reference — What does this symbol mean in PHP?How to check if an object is an array?How do I remove a particular element from an array in JavaScript?Copy array by value

Letter Boxed validator

When -s is used with third person singular. What's its use in this context?

Gastric acid as a weapon

What is the correct way to use the pinch test for dehydration?

Why is black pepper both grey and black?

How much radiation do nuclear physics experiments expose researchers to nowadays?

Do I really need recursive chmod to restrict access to a folder?

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

Did Kevin spill real chili?

What are the pros and cons of Aerospike nosecones?

How to deal with a team lead who never gives me credit?

Is there a concise way to say "all of the X, one of each"?

Did Xerox really develop the first LAN?

When to stop saving and start investing?

How to find all the available tools in macOS terminal?

Is the address of a local variable a constexpr?

What do you call a phrase that's not an idiom yet?

How can players work together to take actions that are otherwise impossible?

Is 1 ppb equal to 1 μg/kg?

3 doors, three guards, one stone

What are the motives behind Cersei's orders given to Bronn?

How to motivate offshore teams and trust them to deliver?

Is it true that "carbohydrates are of no use for the basal metabolic need"?

How to do this path/lattice with tikz



How to search for a value in array of objects and get it in Laravel?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
Should we burninate the [wrap] tag?
The Ask Question Wizard is Live!How do I check if an array includes an object in JavaScript?How to append something to an array?How to insert an item into an array at a specific index (JavaScript)?How do I determine whether an array contains a particular value in Java?Sort array of objects by string property valueHow do I empty an array in JavaScript?Reference — What does this symbol mean in PHP?How to check if an object is an array?How do I remove a particular element from an array in JavaScript?Copy array by value



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















How to search an array of objects and get a specific value if exists, and if not, take something else in Laravel 5.8?



Collection
#items: array:3[
0 = Object
attributes[
"id" => 1
"name" => 'google'
"url" => 'https://google.com/'
]

1 = Object
2 = Object
]



So out of this how to check if in this array there is an attribute url that has google.com in it? If something like this does not exists than get something else?



Is it possible to do this without looping?










share|improve this question






























    0















    How to search an array of objects and get a specific value if exists, and if not, take something else in Laravel 5.8?



    Collection
    #items: array:3[
    0 = Object
    attributes[
    "id" => 1
    "name" => 'google'
    "url" => 'https://google.com/'
    ]

    1 = Object
    2 = Object
    ]



    So out of this how to check if in this array there is an attribute url that has google.com in it? If something like this does not exists than get something else?



    Is it possible to do this without looping?










    share|improve this question


























      0












      0








      0








      How to search an array of objects and get a specific value if exists, and if not, take something else in Laravel 5.8?



      Collection
      #items: array:3[
      0 = Object
      attributes[
      "id" => 1
      "name" => 'google'
      "url" => 'https://google.com/'
      ]

      1 = Object
      2 = Object
      ]



      So out of this how to check if in this array there is an attribute url that has google.com in it? If something like this does not exists than get something else?



      Is it possible to do this without looping?










      share|improve this question
















      How to search an array of objects and get a specific value if exists, and if not, take something else in Laravel 5.8?



      Collection
      #items: array:3[
      0 = Object
      attributes[
      "id" => 1
      "name" => 'google'
      "url" => 'https://google.com/'
      ]

      1 = Object
      2 = Object
      ]



      So out of this how to check if in this array there is an attribute url that has google.com in it? If something like this does not exists than get something else?



      Is it possible to do this without looping?







      php arrays laravel






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 22 at 11:25









      Tridev Shrestha

      301217




      301217










      asked Mar 22 at 8:36









      Emmanuel-AbEmmanuel-Ab

      368




      368






















          1 Answer
          1






          active

          oldest

          votes


















          3














          Assuming the collection variable is $sites, you should be able to use the ->contains() closure to check if any of the $sites contains the google url:



          $hasGoogle = $sites->contains(function ($site, $key) 
          return $site->url == 'https://google.com';
          );

          if ($hasGoogle)
          // do something
          else
          // do something else



          A boolean is returned from the ->contains() method.






          share|improve this answer




















          • 1





            Thank you! This is awesome. :)

            – Emmanuel-Ab
            Mar 22 at 9:57











          • @Emmanuel-Ab You are welcome.

            – thisiskelvin
            Mar 22 at 9:59











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295700%2fhow-to-search-for-a-value-in-array-of-objects-and-get-it-in-laravel%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          3














          Assuming the collection variable is $sites, you should be able to use the ->contains() closure to check if any of the $sites contains the google url:



          $hasGoogle = $sites->contains(function ($site, $key) 
          return $site->url == 'https://google.com';
          );

          if ($hasGoogle)
          // do something
          else
          // do something else



          A boolean is returned from the ->contains() method.






          share|improve this answer




















          • 1





            Thank you! This is awesome. :)

            – Emmanuel-Ab
            Mar 22 at 9:57











          • @Emmanuel-Ab You are welcome.

            – thisiskelvin
            Mar 22 at 9:59















          3














          Assuming the collection variable is $sites, you should be able to use the ->contains() closure to check if any of the $sites contains the google url:



          $hasGoogle = $sites->contains(function ($site, $key) 
          return $site->url == 'https://google.com';
          );

          if ($hasGoogle)
          // do something
          else
          // do something else



          A boolean is returned from the ->contains() method.






          share|improve this answer




















          • 1





            Thank you! This is awesome. :)

            – Emmanuel-Ab
            Mar 22 at 9:57











          • @Emmanuel-Ab You are welcome.

            – thisiskelvin
            Mar 22 at 9:59













          3












          3








          3







          Assuming the collection variable is $sites, you should be able to use the ->contains() closure to check if any of the $sites contains the google url:



          $hasGoogle = $sites->contains(function ($site, $key) 
          return $site->url == 'https://google.com';
          );

          if ($hasGoogle)
          // do something
          else
          // do something else



          A boolean is returned from the ->contains() method.






          share|improve this answer















          Assuming the collection variable is $sites, you should be able to use the ->contains() closure to check if any of the $sites contains the google url:



          $hasGoogle = $sites->contains(function ($site, $key) 
          return $site->url == 'https://google.com';
          );

          if ($hasGoogle)
          // do something
          else
          // do something else



          A boolean is returned from the ->contains() method.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Mar 22 at 14:17

























          answered Mar 22 at 9:41









          thisiskelvinthisiskelvin

          2,275414




          2,275414







          • 1





            Thank you! This is awesome. :)

            – Emmanuel-Ab
            Mar 22 at 9:57











          • @Emmanuel-Ab You are welcome.

            – thisiskelvin
            Mar 22 at 9:59












          • 1





            Thank you! This is awesome. :)

            – Emmanuel-Ab
            Mar 22 at 9:57











          • @Emmanuel-Ab You are welcome.

            – thisiskelvin
            Mar 22 at 9:59







          1




          1





          Thank you! This is awesome. :)

          – Emmanuel-Ab
          Mar 22 at 9:57





          Thank you! This is awesome. :)

          – Emmanuel-Ab
          Mar 22 at 9:57













          @Emmanuel-Ab You are welcome.

          – thisiskelvin
          Mar 22 at 9:59





          @Emmanuel-Ab You are welcome.

          – thisiskelvin
          Mar 22 at 9:59



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55295700%2fhow-to-search-for-a-value-in-array-of-objects-and-get-it-in-laravel%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Obelisk of Theodosius Contents History Description Notes Bibliography Further reading External links Navigation menuAge of spirituality : late antique and early Christian art, third to seventh centuryOver 60 picturesObelisks of the World41°00′21.24″N 28°58′31.43″E / 41.0059000°N 28.9753972°E / 41.0059000; 28.97539727724550-7235741376235741376

          밀양 대씨 역사 각주 함께 보기 둘러보기 메뉴밀양 대씨

          1973년 목차 사건 문화 탄생 사망 노벨상 달력 둘러보기 메뉴