Base table or view not found: Table doesn't exist ERROR while trying to insert some data – Laravel
I have a Laravel 9 project and in the migration of one of the tables, I would like to insert some data as well when creating the table: public function up() { Schema::create('tag_filters', function (Blueprint $table) { $table->id(); $table->string('tag_name'); $table->string('tag_uri')->nullable();…