Laravel Check If Foreach is Empty

Laravel’s Blade templating engine is a powerful tool for rendering dynamic content in your views. When working with arrays in Blade, it’s common to need conditional checks to determine whether the array is empty or not. In this blog post, we’ll dive deep into using the @forelse directive in Blade to elegantly handle empty arrays.

@forelse @empty

Controller Code:

public function index()

{

    $payments = payment::get();

    return view('home',compact('payments'));

}

Blade Code:

<div class="card-header">

    <h5>Laravel Check Array Empty in Blade - Wizbrand.com</h5>

</div>

<div class="card-body">

    @forelse ($payments as $item)

        <p class="bg-danger text-white p-1">Facebook</p>

    @empty

        <p class="bg-danger text-white p-1">No Facebook</p>

    @endforelse

</div>

@empty

Controller Code:

public function index()

{

    $payments = [];

    return view('home',compact('payments'));

}

Blade Code:

<div class="card-header">

    <h5>Laravel Check Array Empty in Blade - Wizbrand.com</h5>

</div>

<div class="card-body">

    @empty($payments)

        <p class="bg-danger text-white p-1">Facebook</p>

    @else

        <p class="bg-danger text-white p-1">No Facebook</p>

    @endempty

</div>

@if empty()

Controller Code:

public function index()

{

    $payments = [];

    return view('home',compact('payments'));

}

Blade Code:

<div class="card-header">

    <h5>Laravel Check Array Empty in Blade - Wizbrand.com</h5>

</div>

<div class="card-body">

    @empty($payments)

        <p class="bg-danger text-white p-1">Facebook</p>

    @else

        <p class="bg-danger text-white p-1">no Facebook</p>

    @endempty

</div>

@if count()

Controller Code:

public function index()

{

    $payments = [];

    return view('home',compact('payments'));

}

Blade Code:

<div class="card-header">

    <h5>Laravel Check Array Empty in Blade - Wizbrand.com</h5>

</div>

<div class="card-body">

    @if($payments->count() > 0)

        <p class="bg-danger text-white p-1">facebook</p>

    @else

        <p class="bg-danger text-white p-1">no facebook</p>

    @endif

</div>

Related Posts

Accelerate Your Pipeline: Implementing Real-Time DataOps

Introduction Real-time DataOps is a critical evolution in how modern organizations manage the constant flow of information. By integrating automation, continuous testing, and real-time processing, businesses can…

Read More

Calculate Your Canada PR Points: The Complete Guide to Boosting Your CRS Score

Introduction Canada uses an objective, merit-based points system to select the most qualified candidates from around the world. To assess your chances, you need to use a…

Read More

Understanding Points Based Immigration System for Austria Red White Red Card

Introduction Austria offers an incredible mix of high-paying jobs, public safety, world-class healthcare, and a perfect work-life balance. It is no wonder that skilled professionals from all…

Read More

Automated Predictive Analytics Tools Driving Modern Agile DataOps Solutions

In the modern digital economy, reacting to problems after they happen is no longer enough. Businesses face an overwhelming flood of information every single day, making manual…

Read More

How DataOps and MLOps Work Together for Scalable AI Pipelines

Introduction In the current landscape of artificial intelligence, building a model is only the beginning. The real challenge for enterprise teams lies in the transition from a…

Read More

Evaluating Modern DataOps Tools Across Business Analytics Infrastructure

Introduction Managing data pipelines used to be a straightforward task for single analytics teams. Today, data ecosystems are complex, fast-moving, and frequently fragmented across multiple cloud environments….

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x