Feature Description
hi,
this works as expected (i am getting IDE autocompletion for $posts variable inside blade template):
view('controllers.post.index', ['posts' => $posts]);
however this doesnt:
$v = 'controllers.post.index';
view($v, ['posts' => $posts]);
is there some kind of custom dockblock to help Laravel Idea to undestand this and provide autocompletion for $posts variable in blade?