在执行完插入语句后,查询数据库已有数据,但执行select方式的时候出现以下错误
C:\xampp\htdocs\laravel>php artisan tinkerPsy Shell v0.7.2 (PHP 5.6.21 鈥?cli) by Justin Hileman
$first = App\Article::find(1);
之后将Article类添加如下:
namespace App;
use Illuminate\Database\Eloquent\Model;
class Article extends Model
{
protected $table = 'articles';
protected $fillable = ['id','title','content','published_at'];
protected $primaryKey = 'id';
public function article()
{
return $this->belongsToMany('App\Article');
}
}
均未能解决,请问老师这是什么情况,卡在这里了