Laravel Blade Empty Directive Example

By Hardik Savani November 5, 2023 Category : Laravel

Hi,

If you need to see example of laravel blade empty directive. we will help you to give example of laravel blade check if variable is empty. i explained simply step by step check empty in laravel blade. This article goes in detailed on laravel @empty directive example.

we will learn simple examples of how to check variable is empty or not in laravel 6, laravel 7, laravel 8, laravel 9 and laravel 10.

let's see bellow simple example:

Blade File Code:

<!DOCTYPE html>

<html>

<head>

<title></title>

</head>

<body>

@empty($user)

<p> user variable is empty.</p>

@endempty

@if(!empty($admin))

<p> admin variable is not empty.</p>

@else

<p> admin variable is empty.</p>

@endif

</body>

</html>

Controller File Code:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;

class AjaxController extends Controller

{

/**

* Create a new controller instance.

*

* @return void

*/

public function index()

{

$user = '';

$admin = 1;

return view('ajaxRequest', compact('user', 'admin'));

}

}

Output:

user variable is empty.

admin variable is not empty.

I hope it can help you...

Tags :