Could we help you? Please click the banners. We are young and desperately need the money
If you're still typing "vendor/bin/sail" every time you want to interact with Laravel Sail, you should know there's an easier and shorter alternative: binding "sail" as an alias.
First, navigate to your shell's configuration file. It may, for example, be at "~/.bashrc" or "~/.zshrc".
Now, append the following entry to the bottom of the file:
# Laravel Sail
alias sail='sh $([ -f sail ] && echo sail || echo vendor/bin/sail)'
Finally, restart your shell and henceforth, every command that once begun with "vendor/bin/sail" shall start with a mere "sail" instead. Enjoy.