Larevel blade 模板里if 条件语句

单条判断:


@if($first == 'song')
name is {{$first}}

@else
name is {{$last}}

@endif

多条判断:


@elseif

注意:
  1. $if( ) 中的变量,没有‘ {{ }} ’;
  2. 判断后执行部分,没有花括号;
  3. 结尾有一个 @endif ;

你可能感兴趣的:(Larevel blade 模板里if 条件语句)