Can't DROP FOREIGN KEY `branch_id`; laravel code example
Example: larael drop foreign key
Schema::table('posts', function (Blueprint $table) {
$table->dropForeign(['category_id']);
});
Schema::table('posts', function (Blueprint $table) {
$table->dropForeign(['category_id']);
});