我正在尝试按照Laravels documentation中显示的示例为我的数据库获取一些数据。
但由于某种原因,我得到语法错误,意外的' ::'在第15行的HomeController.php中。
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class News extends Model
{
/**
* The database table used by the model.
*
* @var string
*/
protected $table = 'news';
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = ['title', 'text'];
}
如果需要,这是模型
rails new my_project -T