Laravel 5.1 rename project

Viewed 35119

What is the best solution if I want to rename my laravel 5.1 project, I just tried to rename one but it did not work properly got some errors.

Are there some kind of steps one has to do to rename a laravel project?

4 Answers

You can change your project name using the following command:

php artisan app:name your_git_name\your_app_name
Related