Results 228 comments of Adel

@alex-kovalchuk .env syntax != .ini syntax You can install .env files support plugin. It has syntax highlighting starting from 0.7 version. https://plugins.jetbrains.com/plugin/9525--env-files-support

I was thinking already to implement this. Customizable, view, route and other auto-completions. I'll try when I have time for it.

It's very hard to implement. ```php $users = User::where('votes', '>', 500)->get(); // $users here is just an object of class Collection. // PhpStorm can't understand that it's a collection of...

Workaround: remove ->namespace($this->namespace . '\Api') and add Route::group('namespace'=> 'Api') to the begin of api.php. It's very compicated to analyze route namespaces in these cases...

You can use single slash instead of double. And it will work. But... maybe it should be fixed too...

@stemis you can run **php artisan ide-helper:meta** It will help :)

Currently plugin doesn’t support ::name methods. Only group method parameters are supported. ‘as’ or ‘prefix’ I don’t remember...

Already fixed by #131 . Will be in the next release.

Plugin didn't get any major updates for almost a year... So, I don't think...