idea-php-laravel-plugin icon indicating copy to clipboard operation
idea-php-laravel-plugin copied to clipboard

Laravel Framework Plugin for PhpStorm / IntelliJ IDEA

Results 100 idea-php-laravel-plugin issues
Sort by recently updated
recently updated
newest added

Do you plan to add support syntax Laravel Envoy in the future ?

First thanks for your contribution to the community. Would it be possible to add a dedicated "Tool Window (horizontal)" for the Laravel Plugin that shows the log files (single, daily,...

PhpStorm 2020.1.1 mutters about Laravel plugin 0.15.4: ``` com.intellij.diagnostic.PluginException: TypeProvider contract violation? by class de.espend.idea.laravel.blade.BladeInjectTypeProvider on $uri [Plugin: de.espend.idea.laravel] at com.intellij.ide.plugins.PluginManagerCore.createPluginException(PluginManagerCore.java:446) at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:12) at com.intellij.diagnostic.PluginException.createByClass(PluginException.java:58) at com.jetbrains.php.lang.psi.resolve.types.PhpTypeInfo.lambda$getTypeFromAST$1(PhpTypeInfo.java:128) at com.intellij.openapi.util.RecursionManager$1.doPreventingRecursion(RecursionManager.java:117) at...

I add several custom blade directives. https://laravel.com/docs/6.x/blade#extending-blade But there is no highlighting like the core directives

Currently there is the feature to complete route names like `Route::get('/login', 'Administration\Auth\LoginController@showLoginForm') ->name('loginForm');` For the name autocompetion is supported in functions like route('loginForm'); It would be nice to support this...

**Example:** RouteServiceProvider: ``` public function map() { ... $this->mapAdminRoutes(); } ... protected function mapAdminRoutes() { Route::prefix('a') ->name('admin.') ->middleware(['web', 'auth', 'permission:admin-dashboard']) ->namespace($this->namespace) ->group(base_path('routes/admin.php')); } ``` admin.php: ``` Route::get('users', 'Admin\UserController@index')->name('users.index'); ``` Autocompletes...

```blade ``` I have this in my layout file and in the child view I tried to use autocomplete by starting to type: `@section('meta...` and it suggested an autocomplete: `meta_keywords,...

Please add support for configuration files nested in directories like `config/modules/messages.php` Which could be requested with `$foo = config('modules.messages.foo');` Saw #169 but with Laravel 6.x and Laravel plugin 0.15.4 and...

Phpstorm completly freeze when use laravel plugin on laravel 4.2 big project. It happens since PHPSTORM 2019.03 (eap and stable)

Our project is using namespace for translation, I realize this plugin already support namespace for view, is it possible to allow namespace for translation, exactly same with what view /...