How I can make variables autocomplete in the PhpStorm 9 for Blade templates?
I want PHPdoc blocks were considered within the blade template. PhpStorm 9, Laravel 5.1, blade template file: <?php /* @var App\Models\User $user */ ?> ... <?= $user->email ?> <- autocomplete for the word "email" is working ... {{ $user->email }} <- autocomplete not working I tried different variants: {{ /** * @var App\Models\User $user **/ }} {{ /* @var App\Models\User $user */ }} ... {{ $user->email }} <- autocomplete not working... ... In such variant autocomplete works, but only within that block: {{ /* @var App\Models\User $user */ $user->email }} ... {{ $user->email }} <- here does not