Class 'App\Http\Controllers\DB' not found and I also cannot use a new Model


使用laravel的db插入数据

 

DB::table('tags')->insert(
    ['name'=>'test']
);

报错Class 'App\Http\Controllers\DB' not found and I also cannot use a new Model

解决方法:

在DB前面加个反斜杠

\DB::table('tags')->insert(
    ['name'=>'test']
);

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM