Base table or view not found: 1146 Table 'links.blogs' doesn't exist
make sure you are using create instead of table. use Schema::create to create new. Schema::create('links', function (Blueprint $table) { $table->increments('id'); $table->timestamps(); }); some this like this