1Schema::table('posts', function (Blueprint $table) {
2 $table->dropForeign(['category_id']);
3});
1// Searched, laravel drop foreign column
2Schema::table('users', function (Blueprint $table) {
3 $table->dropColumn(['votes', 'avatar', 'location']);
4});