Laravel Blade If Condition Example

May 29, 2021 . Admin

Hello Friends,

Now let's see example of how to use if condition in laravel. This is a short guide on laravel if use if condition. We will use how to use use if condition in laravel. Here you will learn how to use if condition in laravel. We will use how to use if condition in laravel. Let's get started with how to use if condition in laravel.

Here i will give you many example how you can use if condition in laravel.

Example: if...endif Condition

In this example, I will use if condition in blade file.

Syntax:

@if (condition)
    // Statements inside body of if
@endif

Example:

@if (count($data) === 1)
    I have one record!
@endif
Example: if..else..endif condition

Now this example, I will use if else condition in blade file.

Syntax:

@if (condition)
    // Statements inside body of if
@else
    //Statements inside body of else
@endif

Example:

@if (count($data) === 1)
    I have one record!
@else
    I don't have any records!
@endif
Example: if..elseif..else..endif Condition

Now this example, I will use if elseif else condition in blade file.

Syntax:

@if (condition)
    // Statements inside body of if
@elseif (condition)
    // Statements inside body of else if
@else
    //Statements inside body of else
@endif

Example:

@if (count($data) === 1)
    I have one record!
@elseif (count($data) > 1)
    I have multiple records!
@else
    I don't have any records!
@endif

It will help you....

#Laravel