Skip to content

Instantly share code, notes, and snippets.

@tomshaw
Created February 26, 2024 23:39
Show Gist options
  • Save tomshaw/78d9036ccd7e10ecb701195475f08167 to your computer and use it in GitHub Desktop.
Save tomshaw/78d9036ccd7e10ecb701195475f08167 to your computer and use it in GitHub Desktop.
PowerShell Laravel Artisan Alias
# 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