mirror of
https://github.com/solidtime-io/solidtime.git
synced 2026-08-09 00:32:15 +01:00
13 lines
205 B
Bash
13 lines
205 B
Bash
tinker() {
|
|
if [ -z "$1" ]; then
|
|
php artisan tinker
|
|
else
|
|
php artisan tinker --execute="\"dd($1);\""
|
|
fi
|
|
}
|
|
|
|
# Commonly used aliases
|
|
alias ..="cd .."
|
|
alias ...="cd ../.."
|
|
alias art="php artisan"
|