Check if variable exist in laravel's blade directive

前端 未结 13 1437
清歌不尽
清歌不尽 2021-02-03 19:23

I\'m trying to create blade directive which echo variable (if variable defined) or echo \"no data\" if variable undefined.

This is my code in AppServiceProvider.ph

13条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-03 19:44

    For the last version of Larvael make the variable optional in the blade template. Replace $myvar with {{ $myvar }} with {{ $myvar?? '' }}

提交回复
热议问题