Tuve el siguiente error. ¿Cómo puedo arreglarlo?
Tabla base o vista no encontrada: 1146 Tabla 'account_infos'
Migración
public function up() { Schema::create('account_info', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('users_id'); $table->foreign('users_id')->references('id') ->on('users')->onDelete('cascade'); $table->unsignedBigInteger('axis_id'); $table->foreign('axis_id')->references('id') ->on('axis')->onDelete('cascade'); $table->enum('account_type',['legal','rightful']); $table->timestamps(); }); }Solo agrega:
protected $table='account_info';en tu modelo