Cant drop foreign key that column/key exists in mysql relation: Error Code: 1091

    class UpdateForiegnKeyToAttendancesTable extends Migration
    {
        public function up()
        {
            Schema::disableForeignKeyConstraints();
            // drop foreign keys
            Schema::table('attendances', function (BluePrint $table) {
                $table->dropForeign('attendances_employee_id');
            });
            //...
            Schema::enableForeignKeyConstraints();
        }
        //...
    }