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

IDE Helper for Laravel

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

### Versions: - ide-helper Version: 2.9.2, but exists on 2.10 as well - Laravel Version: 8.51.0 - PHP Version: 8.0.8 ### Description: When using a cast that implements CastsAttributes interface,...

bug

### Versions: - ide-helper Version: 2.10.0 - Laravel Version: 8.50.0 - PHP Version: 8.0.8 ### Summary: When using `Model::on(...)->first()` PHPStorm doesn't know the real type of the returned instance. ```php...

enhancement

Read topic. Also good feature will be to use php imports(aka `use`)

enhancement

### Summary Currently in ModelsCommand.php when getting properties from table, it's adding columns in same order that columns are saved in database. ``` src/Console/ModelsCommand.php protected function getPropertiesFromTable($model) { ... $columns...

enhancement

### Versions: - ide-helper Version: 2.8.1 - Laravel Version: 7.28.3 - PHP Version: 7.3.19 ### Description: Brief: Equolent models $dates camelCase values are ignored by ide-helper with model_camel_case_properties' => true...

bug

### Versions: - ide-helper Version: 2.10.0 - Laravel Version: 8.44.0 - PHP Version: 8.0.3 - MariaDB 10.2.29 ### Description: While attempting to run the `ide-helper:model` command, I received an exception...

bug

A month ago this package began to support dedicated builders https://github.com/barryvdh/laravel-ide-helper/pull/1089 ```php // PostBuilder class PostBuilder extends Builder { public function published(): static { $this->whereNotNull('published_at'); return $this; } } //...

enhancement

This pull request exposes a command for generating phpDocs for Laravel's FormRequests. The command supports generating docBlocks both inline, in the same files where class declarations are, and inline. It...

### Summary I use VS Code. Now to get an expected type need to set the type manually, because the extension returns real types of methods (https://marketplace.visualstudio.com/items?itemName=bmewburn.vscode-intelephense-client). ``` // Case...

enhancement

### Versions: - ide-helper Version: v2.10.0 - Laravel Version: v8.22.1 - PHP Version: PHP 7.3.28-1+ubuntu20.04.1+deb.sury.org+1 (cli) ### Description: I get the exception when `Auth::getUser()` is used: `Method Illuminate\Auth\RequestGuard::getUser does not...

bug