laravel database connection returns undefined index error

前端 未结 6 1169
野趣味
野趣味 2021-01-22 16:53

I am developing a project using laravel 4 framework. In my database.php file I get the following error:

  Undefined index: driver 

And my conne

6条回答
  •  南笙
    南笙 (楼主)
    2021-01-22 17:33

    This happens to me because I deleted

    'default' =>env('DB_CONNECTION', 'mysql'),
    

    From app/config/database.php. It's necesary have a default connection

提交回复
热议问题