From 8ca8b2271c1c7b9a1529516a1b2bf3904aaf8b4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joaqu=C3=ADn=20Gamboa?= Date: Fri, 23 May 2025 23:45:09 -0400 Subject: [PATCH] Update laravel.plugin.zsh fix "'" at the begining of the command --- plugins/laravel/laravel.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/laravel/laravel.plugin.zsh b/plugins/laravel/laravel.plugin.zsh index 80aba994f..20a1c473e 100644 --- a/plugins/laravel/laravel.plugin.zsh +++ b/plugins/laravel/laravel.plugin.zsh @@ -12,7 +12,7 @@ alias pamf='php artisan migrate:fresh' alias pamfs='php artisan migrate:fresh --seed' alias pamr='php artisan migrate:rollback' alias pads='php artisan db:seed' -alias padw=php artisan db:wipe' +alias padw='php artisan db:wipe' # Makers alias pamm='php artisan make:model'