This repository was archived by the owner on Mar 12, 2022. It is now read-only.
This repository was archived by the owner on Mar 12, 2022. It is now read-only.
Namespaced views - can't jump to source from @extends or trans #79
Open
Description
I think this might be similar to #30, but I am not 100% certain. When trying to "jump to source" (cmd + click on Mac / ctrl + click on Win), @include
s work just fine (opens the correct file), but @extends
and @lang
/{{ trans() }}
do not (no file is opened at all).
I have both checkboxes checked in Config > Language & Frameworks > PHP > Laravel
and I do not have any custom Namespaces in Config > Language & Frameworks > PHP > Laravel > Views / Template
.
This has not worked in any version of PhpStorm 2016 that I have tried.
Here are some examples:
Working:
@include('contact::email.customer.partials.message-data')
Not working:
@extends('contact::email.layouts.customer')
{{ trans('contact::emails.action.button.claim-ticket') }}