Skip to content

Instantly share code, notes, and snippets.

@jpalala
Created August 14, 2024 06:21
Show Gist options
  • Save jpalala/126fffe9a1ada79f951a508ae28b9bb4 to your computer and use it in GitHub Desktop.
Save jpalala/126fffe9a1ada79f951a508ae28b9bb4 to your computer and use it in GitHub Desktop.
artisan shortened command
# Add this function to your ~/.zshrc file
art() {
# Define a function with a case statement
case $1 in
"cc")
php artisan config:clear && php artisan config:cache
# Add your code for option 1 here
;;
"oc")
php artisan optimize:clear
# Add your code for option 2 here
;;
*)
php artisan
;;
esac
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment