Laravel without database connection

后端 未结 5 831
渐次进展
渐次进展 2020-12-31 18:42

is there a way to use Laravel without database connection? I am planning to create a frontend website using blade and VueJS that will consume third-party API and I don\'t ne

5条回答
  •  北海茫月
    2020-12-31 19:22

    Every change you make to the .env file you need to restart your server.

    So you need to stop service by Ctrl + C, killing process if you run in detached state or stop your Docker etc. Then run again with php artisan serve or rerun your Docker container.

提交回复
热议问题