php artisan make:model Comment
命令我使用以下代码创建了一个名为CommentTableSeeder
的新数据库播种器:
<?php
使用Illuminate \ Database \ Seeder;
class CommentTableSeeder扩展了Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('comments')->delete();
Comment::create(array(
'author' => 'A name',
'text' => 'Hello all nice website'
));
Comment::create(array(
'author' => 'name2',
'text' => 'Hahahahha'
));
Comment::create(array(
'author' => 'Name 3,
'text' => 'I destroy your car'
));
}
}
php artisan db:seed
命令,我收到错误消息:
Class 'Comment' not found
为什么?
答案 0 :(得分:2)
添加以下行:
use App\Comment;
此外,您可以使用此:
\App\Comment::
而不是
Comment::