我在config / database和.env以及phpmyadmin中设置前缀 但是当我访问我的本地主机时,它会显示xyz,abc,(表名)不存在的消息
答案 0 :(得分:0)
您必须按照here
的说明在模型中配置表名class Flight extends Model
{
/**
* The table associated with the model.
*
* @var string
*/
protected $table = 'my_flights';
}
答案 1 :(得分:0)
您可以在config/database.php
中设置表前缀,
'prefix' => 'myprefix',