Answers for "if empty laravel"

PHP
2

laravel check if laravel query is empty

if ($result->first()) { } 
if (!$result->isEmpty()) { }
if ($result->count()) { }
if (count($result)) { }
Posted by: Guest on May-18-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

Browse Popular Code Answers by Language