我正尝试通过Artisan修补匠直接访问自定义枢轴类,例如:App\Registration::all()
。但是似乎不能直接访问扩展支点的类吗?
错误消息:Illuminate / Database / QueryException,消息为“ SQLSTATE [42S02]:找不到基本表或视图:1146表'teknologiskolen.registration”不存在(SQL:从registration
中选择*,其中{ {1}}。registration
= 1个限制1)'
答案 0 :(得分:0)
在数据透视模型中指定表格:
class Registration extends Pivot {
protected $table = 'registrations';
}