Home > Blockchain >  Laravel error: Laravel Sail no such File or directory found
Laravel error: Laravel Sail no such File or directory found

Time:03-17

I am following this enter image description here

When i am trying to run Laravel project using command,

./vendor/bin/sail up

Why i am getting error no such file or directory found?

CodePudding user response:

Instead of:

./vendor/bin/sail up ❌

Use this:

bash ./vendor/laravel/sail/bin/sail up ✅
  • Related