javascript - Want to compare two columns of different table in laravel

I want to compare two columns from two different tables, I have column called "Features" in Model Attrition_correlators and another "Topcorrelators" in Membersdetail. Since I am new to laravel not sure how I can get the value and compare both values. Here is my code:
Controller.php
public function show(Memberdetails $Memberdetail, Attrition_correlators $Attrition_correlation_list)
{
return view('admin.members.Detailspage',compact('Memberdetail','Attrition_correlation_list'));
}
Answer
Solution:
It's because you get a collection of Attrition_correlation_list. In this case you need to iterate over it to get properties:
@foreach(explode(',', $Memberdetail->Topcorrelators) as $row)
<tr>
<td>
{{ $row }}
</td>
@foreach($Attrition_correlation_list as $item)
@if($item->Features == $row)
...
@else
...
@endif
@endforeach
</tr>
@endforeach
You also need to edit your controller like below. Because you passed null value in$Attrition_correlation_list
public function show(Memberdetails $Memberdetail)
{
$Attrition_correlation_list = Attrition_correlators::all();
return view('admin.members.Detailspage',compact('Memberdetail','Attrition_correlation_list'));
}
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: object of class stdclass could not be converted to string
Didn't find the answer?
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Similar questions
Find the answer in similar questions on our website.
Write quick answer
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
About the technologies asked in this question
PHP
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
Laravel
Laravel is a free open source PHP framework that came out in 2011. Since then, it has been able to become the framework of choice for web developers. One of the main reasons for this is that Laravel makes it easier, faster, and safer to develop complex web applications than any other framework.
https://laravel.com/
JavaScript
JavaScript is a multi-paradigm language that supports event-driven, functional, and mandatory (including object-oriented and prototype-based) programming types. Originally JavaScript was only used on the client side. JavaScript is now still used as a server-side programming language. To summarize, we can say that JavaScript is the language of the Internet.
https://www.javascript.com/
HTML
HTML (English "hyper text markup language" - hypertext markup language) is a special markup language that is used to create sites on the Internet.
Browsers understand html perfectly and can interpret it in an understandable way. In general, any page on the site is html-code, which the browser translates into a user-friendly form. By the way, the code of any page is available to everyone.
https://www.w3.org/html/
Welcome to programmierfrage.com
programmierfrage.com is a question and answer site for professional web developers, programming enthusiasts and website builders. Site created and operated by the community. Together with you, we create a free library of detailed answers to any question on programming, web development, website creation and website administration.
Get answers to specific questions
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Help Others Solve Their Issues
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.