vscode-laravel-artisan
vscode-laravel-artisan copied to clipboard
Visual Studio Code Laravel Artisan Extension
Quick fix based on your existing code. When you get the chance to review. ```diff --- a/src/Common.ts +++ b/src/Common.ts @@ -93,7 +93,11 @@ export default class Common { if (dockerEnabled)...
Seeders were namespaced and moved from `database/seeds/` to `database/seeders/` in Laravel 8. The extension today only tries to open seeders in `database/seeds/`. The best way to fix this would probably...
Fresh Laravel 8 project with Jetstream / Inertia displays tons of inline middleware and makes this feature fairly useless. Anything that can be done about it would be super appreciated....
The migration file is created very quickly but the artisan make:migration command takes a while to complete since it will rul ```$this->composer->dumpAutoloads();``` at the end, this makes the command seem...
I'm a [VS Codium](https://github.com/VSCodium/vscodium) user, a FLOSS version of VS Code, it's the same code but without the Microsoft's telemetry and branding. I want to request if possible to add...
I would like to ask the addition of the `artisan make:rule` command. https://laravel.com/docs/7.x/validation#using-rule-objects
Commands like route listing works: > [CMD] "php74" artisan route:list My` artisan.php.location` is customized (php74 executable).
Would be nice to have `Artisan: Make Observer`. https://laravel.com/docs/5.8/eloquent#observers Might submit a PR for this myself if nobody does it in the near future.
I am unable to run the commands against Docker, because the commands automatically `cd` into the current `artisanRoot` directory before running the `artisan.docker.command`. Code Output: ``` [CMD] php artisan route:list...