laravel-goto-view
laravel-goto-view copied to clipboard
vscode extension
EP: Finding controller declaration: Declaration not found.
I have two controllers with the same name `RequestController` but in a different directory, so they have different namespaces. In the route file: ```php
Hi, I don't have the knowledge to contribute to a vscode extension but I think it would be cool to be able to make a quick jump to the syntaxes...
I have a this config: www/projects/ - porject1 - project2 - project3 I using vscode: cd www/projects/ code . -n But, when i press ctrl-click to open view, not open,...
Laravel 8.x introduces [Anonymous index component](https://laravel.com/docs/8.x/blade#anonymous-index-components) to allow component use index as its parent component. I was wondering if your extension to allow discovery of an index component?
I can go to when using `` but not `@livewire('my-component')`. Coming from PHPstorm, when clicked, two options will pop-up, either to the the Component class or the view of that...
In [Laravel Idea](https://laravel-idea.com) PhpStorm plugin there is a settings for custom view functions. Reference: https://laravel-idea.com/docs/ide_json - view names for the first parameter of `customView` function ```json { "completion": { "view":...
The extension should look in service providers' `boot()` methods for `Blade::anonymousComponentPath()` calls and highlight component tags accordingly ```php // app/Providers/AppServiceProvider.php public function boot() { Blade::anonymousComponentPath(resource_path('views/layouts'), 'layouts'); } ``` ```blade {{--...
In my controller, i define the return as: `return view('welcome');` When i ctrl + click or alt + click on the "welcome", it does not jump to the view file....