How I can make variables autocomplete in the PhpStorm 9 for Blade templates?

前端 未结 4 1112
礼貌的吻别
礼貌的吻别 2021-01-02 06:38

I want PHPdoc blocks were considered within the blade template.

PhpStorm 9, Laravel 5.1, blade template file:



        
4条回答
  •  悲&欢浪女
    2021-01-02 06:47

    More or less same answer, just wrapped in a blade directive:

     @php /** @var App\Models\User $user */ @endphp
     {{ $user->email }}
    

提交回复
热议问题