解決Classnotfound和Basetableorviewnotfound:1051問題

Awbeci發表於2016-08-07

1、解決class not found的方法:

如果你用的是homestead虛擬機器,那麼,你要到虛擬機器下執行:

composer dump-autoload

2、解決Base table or view not found: 1051的方法

mysql> drop database homestead;

mysql> create database homestead;

php artisan migrate

 

總結:當我用1的方法解決了1問題的時候,之後又出現了2的問題,然後再用2的方法解決了!!!

參考:

http://stackoverflow.com/questions/32417358/laravel-5-1-migration-error

https://laravel.com/docs/5.2/migrations#running-migrations


相關文章