Laravel 8 If Else 조건 블레이드 예제

원래 게시 @ https://codeanddeploy.com 샘플 코드를 방문하여 다운로드하십시오.
https://codeanddeploy.com/blog/laravel/laravel-8-if-else-condition-blade-example

이 게시물에서는 Laravel 8 If Else Condition Blade의 예를 보여드리겠습니다. 이것은 Laravel 애플리케이션에 로직을 삽입하는 데 사용할 것이기 때문에 Laravel을 공부할 때 배우는 것이 가장 중요합니다.

예제 #1: if..endif 조건



아래는 블레이드에 대한 if..endif 조건의 샘플입니다.

통사론:

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




예시:

@if (count($posts))
    You have a post!
@endif


예 #2: if..else..endif 조건



아래는 if..else..endif 조건의 예입니다. 조건이 거짓이면 다른 결과를 표시하는 데 도움이 됩니다.

통사론:

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


예시:


@if (count($posts))
    You have a post!
@else
    You don't have a post!
@endif


예 #3: if..elseif..else..endif 조건



이제 다중 조건을 수행해 보겠습니다. 아래 예를 참조하십시오.

통사론:

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


예시:

@if (count($posts) == 1)
    You have a post!
@elseif(count($posts)>1)
    You have more than one posts!
@else
    You don't have a post!
@endif


이제 Laravel if else 조건에 대한 기본 지식을 갖게 되었습니다.

이 튜토리얼이 도움이 되었으면 합니다. 친절하게 여기를 방문하십시오 https://codeanddeploy.com/blog/laravel/laravel-8-if-else-condition-blade-example 이 코드를 다운로드하려면.

행복한 코딩 :)

좋은 웹페이지 즐겨찾기