LoginSignup
0
0

More than 5 years have passed since last update.

laravel5のviewで変数に代入する代わりの短縮形

Last updated at Posted at 2018-10-13

laravel5のbladeテンプレート内で変数が空の場合は初期値0を代入する場合、

@if(empty($number)) <?php $number = 0; ?> @endif

会員No {{ $number }}

という記述をしていましたが、綺麗ではないのでbladeならではの記法はないかと調べました。
以下のような三項演算子の代わりになる短縮形が用意されていました。


会員No {{ $number or 0 }}




参考にしたページ
https://readouble.com/laravel/5.1/ja/blade.html

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0