php - Laravel 7 - Blade IF
Get the solution ↓↓↓I need some help. I have separate sections in my blade template which I would like not to be shown if there are no values to display.
This is the section I want to hide if there are no entries.
<div class="card-incident-details-other card-incident-details ">
<h4>Other Skills Used</h4>
<ul>@foreach ($skillsused as $skillused)
@if ($skillused->SkillName->gid === 4)
<li>{{ $skillused->SkillName->skills_name }}</li>
@endif
@endforeach</ul>
</div>
Answer
Solution:
You can use a simple filter to do this:
if($skillsused->filter(function ($v) {
return $v->SkillName->gid === 4;
})->count() > 0)
If you have PHP 7.4 and above:
if($skillsused->filter(fn ($v) => $v->SkillName->gid === 4)->count() > 0)
Answer
Solution:
The error message is quite clear, you can only pass an array or a collection of models into thecount
helper function. This$skillused->SkillName->gid
is a single instance of a model not to mention your accessinggid
so technically your passing aninteger
into thecount
function. To fix your error refactor your code to look like this:
// I believe this `$skillsused` variable is the collection given your looping through it.
// Model collections comes with a count method for convenience so we use that instead.
@if ($skillsused->count() > 0)
<div class="card-incident-details-other card-incident-details">
<h4>Other Skills Used</h4>
<ul>
@foreach ($skillsused as $skillused)
@if ($skillused->SkillName->gid === 4)
<li>{{ $skillused->SkillName->skills_name }}</li>
@endif
@endforeach
</ul>
</div>
@endif
Following your comment below, this should yield the desired result:
@if ($skillsused->count() > 0)
@php $displayBlock = false; @endphp
@foreach ($skillsused as $skillused)
@if ($skillused->SkillName->gid === 4) $displayBlock = true @endif
@endforeach
@if ($displayBlock)
<div class="card-incident-details-other card-incident-details">
<h4>Other Skills Used</h4>
<ul>
@foreach ($skillsused as $skillused)
@if ($skillused->SkillName->gid === 4)
<li>{{ $skillused->SkillName->skills_name }}</li>
@endif
@endforeach
</ul>
</div>
@endif
@endif
This is clunky if you ask me but if it solves your problem then fine, consider moving it to a blade component.
Share solution ↓
Additional Information:
Link To Answer People are also looking for solutions of the problem: sqlstate[23000]: integrity constraint violation: 1452 cannot add or update a child row: a foreign key constraint fails
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/
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.