Created
February 26, 2024 23:39
-
-
Save tomshaw/78d9036ccd7e10ecb701195475f08167 to your computer and use it in GitHub Desktop.
PowerShell Laravel Artisan Alias
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Laravel Artisan Alias | |
function artisan { | |
param ( | |
[string]$Command | |
) | |
php artisan $Command | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment