Check if variable exist in laravel's blade directive

前端 未结 13 1433
清歌不尽
清歌不尽 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条回答
  •  臣服心动
    2021-02-03 19:36

    Try checking if the variable is empty:

    @if(empty($myvar))
        

    Data does not exist

    @else

    Your data is here!

    @endif

    Can also check this thread

提交回复
热议问题