Reputation: 122
Can anybody tell me which tips required to move a laravel project from windows to linux? I installed a new project on linux and copied files separately but it says can't open required conroller( Controller Name ) file
Upvotes: 0
Views: 4130
Reputation: 57743
Make use of the mighty Laravel Homestead and you will never have a problem switching your host development environment from windows to linux to mac or back.
How to migrate to another development environment like laravel homestead:
composer.lock
is included in your git repo and run composer install
after cloning.artisan migrate
if you want a clean and empty database structure.Upvotes: 1