laravel blade check if array is empty code example

Example 1: laravel check if array is empty

//for get() array methods
if($data_array->isEmpty())
{dd('EMPTY');}
else
{dd('NOT EMPTY');}

//for other array
if (count($data_array) > 0) 
{dd('EMPTY');}
else
{dd('NOT EMPTY');}

Example 2: Laravel Blade Foreach If Empty or Not

public function index()

{

    $products = Product::get();

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

}

<div class="card-header">

    <h5>Laravel Check Array Empty in Blade </h5>

</div>

<div class="card-body">

    @forelse ($products as $product)

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

    @empty

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

    @endforelse

</div>

Tags:

Php Example