Answers for "check empty array in laravel blade"

PHP
2

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');}
Posted by: Guest on October-29-2020
0

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>
Posted by: Guest on August-28-2020

Code answers related to "check empty array in laravel blade"

Browse Popular Code Answers by Language