laravel 5.4 forelse
@forelse ($users as $user)
    <li>{{ $user->name }}</li>
@empty
    <p>No users</p>
@endforelselaravel 5.4 forelse
@forelse ($users as $user)
    <li>{{ $user->name }}</li>
@empty
    <p>No users</p>
@endforelseblade if
@if (count($records) === 1)
    I have one record!
@elseif (count($records) > 1)
    I have multiple records!
@else
    I don't have any records!
@endifforeach loop laravel
foreach($data as $key => $value)
{
	dd($value);
}forach in larvel blade
@forelse ($array as $element)
    // loop here
@empty
	// is empty
@endforelseblade forelse
@forelse($things as $thing)
	{{$$thing}}
@empty
	<span class="text-danger">No Things</span>
@endforelseforelse blade
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>Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us
