laravel-ide-helper icon indicating copy to clipboard operation
laravel-ide-helper copied to clipboard

IDE Helper for Laravel

Results 249 laravel-ide-helper issues
Sort by recently updated
recently updated
newest added

### Summary I use the plugin [Tpetry/PostgresqlEnhanced](https://github.com/tpetry/laravel-postgresql-enhanced) and it adds some useful Postgres Features to Laravel but the autocomplete in PHPStorm isn't working fully. I did notice the write-mixin option...

enhancement

### Versions: - ide-helper Version: master - Laravel Version: 10.17.1 - PHP Version: 8.1 ### Description: If I understand the code in `\Illuminate\Database\Eloquent\Concerns\HasAttributes` that relies on the `\Illuminate\Database\Eloquent\Concerns\HasAttributes::$snakeAttributes` property correctly,...

bug

### Versions: - ide-helper Version: 2.13 - Laravel Version: 10.10 - PHP Version: 8.3.1 ### Question: After 2 whole days trying to make it work, I just give up to...

question

If it possible to add something like ` /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return...

enhancement

### Versions: - ide-helper Version: 2.12.3 - Laravel Version: 9.38.0 - PHP Version: 8.1.12 ### Description: In generated `_ide_helper.php` specific methods have incorrect type in the `@param` PHPdoc tag. Instead...

bug

### Versions: - ide-helper Version: 2.13.0 - Laravel Version: 10.12.0 - PHP Version: 8.1.0 Autocompletion not working inside of controller. for exmple : User::find or User::where..etc. but inside web.php works...

bug

### Versions: - ide-helper Version: 2.13.0 - Laravel Version: 9.52.7 - PHP Version: 8.0.28 ### Description: The generated _ide_helper.php file has the wrong return type for the Cache::get function, here...

bug

### Versions: - ide-helper Version: 2.13.0 - Laravel Version: 10.19.0 - PHP Version: 8.2.8 ### Question: Good day and thanks for the great tool! I am using it to generate...

question

Today, I implement **barryvdh/laravel-ide-helper** in my personal project after using it in mine work. I'm using **staudenmeir/eloquent-has-many-deep** package for query optimization with new relations "HasOneDeep", "HasManyDeep" and more. For more...

enhancement

### Summary Following code belows gives error that returned model is actually a Query Builder and not a Relation model because of the typing: ``` function(): Relation { return $model->relation()->select();...

enhancement