4jean / lav_sms

Laravel School Management System (LAVSMS)
MIT License
769 stars 475 forks source link

No Vendor folder #73

Open habeycole opened 5 months ago

habeycole commented 5 months ago

The Laravel vendor folder isn't in the folder's root directory or any directory in the project.

KeronLewisGit commented 5 months ago

Run composer update Then composer install

OthmaneNissoukin commented 5 months ago

@habeycole Basically Laravel vendor contains the project dependencies which can be installed anytime running composer i command in the project directory, and if you checked .gitignore file in the project you will find the vendor is mentioned there as well as some other files and folders which are meant to be ignored when pushing the project to github to not be uploaded which makes sense for vendor and node_modules for example.

habeycole commented 5 months ago

Awesome! Thanks @KeronLewisGit and @OthmaneNissoukin. Your inputs are highly appreciated!