Switch in Laravel 5 - Blade

后端 未结 8 542
南旧
南旧 2021-02-02 05:10

How can I use switch in blade templates? When I used:

@switch($login_error)
    @case(1)
        `E-mail` input is empty!
        @break
    @case(2)
        `Pa         


        
8条回答
  •  无人及你
    2021-02-02 05:41

    Updated 2020 Answer

    Since Laravel 5.5 the @switch is built into the Blade. Use it as shown below.

    @switch($login_error)
        @case(1)
             `E-mail` input is empty!
            @break
    
        @case(2)
            `Password` input is empty!
            @break
    
        @default
            Something went wrong, please try again
    @endswitch
    

    Older Answer

    Unfortunately Laravel Blade does not have switch statement. You can use Laravel if else approach or use use plain PHP switch. You can use plain PHP in blade templates like in any other PHP application. Starting from Laravel 5.2 and up use @php statement.

    Option 1:

    @if ($login_error == 1)
        `E-mail` input is empty!
    @elseif ($login_error == 2)
        `Password` input is empty!
    @endif
    

提交回复
热议问题